/* ==========================================================================
   Base & Reset
   ========================================================================== */
:root {
  --bg-dark: #070913;
  --bg-panel: #121626;
  --bg-card: rgba(22, 28, 45, 0.7);
  --primary-color: #00f0ff;
  --primary-glow: rgba(0, 240, 255, 0.4);
  --secondary-color: #7000ff;
  --secondary-glow: rgba(112, 0, 255, 0.4);
  --text-main: #e2e8f0;
  --text-muted: #94a3b8;
  --border-color: rgba(255, 255, 255, 0.08);
  --font-heading: "Orbitron", sans-serif;
  --font-body: "Poppins", sans-serif;
  --transition-fast: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --header-height: 80px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background:
    radial-gradient(
      circle at 15% 50%,
      rgba(112, 0, 255, 0.05),
      transparent 25%
    ),
    radial-gradient(circle at 85% 30%, rgba(0, 240, 255, 0.05), transparent 25%);
  z-index: -1;
  pointer-events: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ==========================================================================
   Typography & Reusables
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #fff, var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 4rem;
  font-size: 1.1rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(
    45deg,
    var(--secondary-color),
    var(--primary-color)
  );
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 4px 15px var(--secondary-glow);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--primary-glow);
}

.btn-primary:hover::before {
  left: 100%;
}

.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  transition: var(--transition-fast);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(7, 9, 19, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: background var(--transition-fast);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo-link img {
  height: 60px;
  filter: invert(1) drop-shadow(0 0 5px var(--primary-glow));
}

.nav-list {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary-color);
  transition: width var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
  box-shadow: 0 0 8px var(--primary-color);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  width: 25px;
  height: 2px;
  background: #fff;
  position: relative;
  transition: 0.3s;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
}
.hamburger::before {
  top: -8px;
}
.hamburger::after {
  top: 8px;
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--bg-panel);
  border-left: 1px solid var(--border-color);
  z-index: 999;
  padding: 6rem 2rem 2rem;
  transition: right var(--transition-slow);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-nav.active {
  right: 0;
}
.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.mobile-nav a {
  font-size: 1.2rem;
  font-family: var(--font-heading);
  display: block;
}
.mobile-nav .btn-primary {
  justify-content: center;
  margin-top: 1rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 4rem);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  background: linear-gradient(
    to right,
    #fff,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: slideUp 1s ease forwards;
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 500px;
  animation: slideUp 1s 0.2s ease forwards;
  opacity: 0;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  animation: slideUp 1s 0.4s ease forwards;
  opacity: 0;
}

.hero-visual {
  position: relative;
  height: 500px;
  perspective: 1000px;
}

.cube-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  transform-style: preserve-3d;
  animation: rotate3d 15s linear infinite;
}

.cube-face {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(112, 0, 255, 0.1);
  border: 2px solid var(--primary-color);
  box-shadow: 0 0 20px var(--primary-glow) inset;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
}

.cube-face.front {
  transform: rotateY(0deg) translateZ(125px);
}
.cube-face.back {
  transform: rotateY(180deg) translateZ(125px);
}
.cube-face.right {
  transform: rotateY(90deg) translateZ(125px);
}
.cube-face.left {
  transform: rotateY(-90deg) translateZ(125px);
}
.cube-face.top {
  transform: rotateX(90deg) translateZ(125px);
}
.cube-face.bottom {
  transform: rotateX(-90deg) translateZ(125px);
}

/* ==========================================================================
   Services Section (3D Tilt Cards)
   ========================================================================== */
.services {
  padding: 6rem 0;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  transform-style: preserve-3d;
  perspective: 1000px;
  cursor: pointer;
}

.service-card-inner {
  padding: 2.5rem;
  border-radius: 20px;
  background: linear-gradient(145deg, var(--bg-panel), #0a0e17);
  border: 1px solid var(--border-color);
  transition: transform 0.1s;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-fast);
}

.service-card:hover .service-card-inner::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 10px var(--primary-glow));
  transform: translateZ(30px);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  transform: translateZ(20px);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  transform: translateZ(10px);
}

/* ==========================================================================
   Reports / Analytics Interactive Section
   ========================================================================== */
.reports {
  padding: 6rem 0;
  background: var(--bg-panel);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.reports-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.reports-content h2 {
  margin-bottom: 1rem;
}
.reports-content p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.chart-widget {
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

.stat-item {
  text-align: center;
}
.stat-value {
  font-size: 2rem;
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-weight: bold;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  height: 200px;
  padding-top: 2rem;
}

.bar {
  flex: 1;
  background: linear-gradient(
    to top,
    var(--secondary-color),
    var(--primary-color)
  );
  border-radius: 4px 4px 0 0;
  position: relative;
  transform-origin: bottom;
  animation: growUp 1.5s cubic-bezier(0.1, 0.8, 0.2, 1) forwards;
  opacity: 0;
}

.bar::after {
  content: attr(data-val);
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s 1.5s;
}

.reports.in-view .bar {
  opacity: 1;
}
.reports.in-view .bar::after {
  opacity: 1;
}

.bar:nth-child(1) {
  height: 40%;
  animation-delay: 0.1s;
}
.bar:nth-child(2) {
  height: 60%;
  animation-delay: 0.2s;
}
.bar:nth-child(3) {
  height: 45%;
  animation-delay: 0.3s;
}
.bar:nth-child(4) {
  height: 80%;
  animation-delay: 0.4s;
}
.bar:nth-child(5) {
  height: 100%;
  animation-delay: 0.5s;
}

/* ==========================================================================
   ROI Calculator Section
   ========================================================================== */
.calculator {
  padding: 6rem 0;
  position: relative;
}

.calc-wrapper {
  background: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>')
    var(--bg-card);
  border-radius: 24px;
  padding: 4rem;
  border: 1px solid var(--border-color);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.calc-controls .form-group {
  margin-bottom: 2rem;
}

.calc-controls label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-weight: 500;
  color: var(--text-main);
}

.range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: #2a2d3e;
  border-radius: 3px;
  outline: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-color);
  cursor: pointer;
  box-shadow: 0 0 10px var(--primary-glow);
  transition: transform 0.2s;
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.calc-results {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-dark);
  padding: 3rem;
  border-radius: 16px;
  border: 1px solid var(--primary-color);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.1) inset;
  text-align: center;
}

.result-box {
  margin-bottom: 2rem;
}
.result-box h4 {
  color: var(--text-muted);
  font-size: 1rem;
}
.result-value {
  font-size: 3.5rem;
  font-family: var(--font-heading);
  color: #fff;
  text-shadow: 0 0 15px var(--primary-glow);
}

/* ==========================================================================
   Industries Section
   ========================================================================== */
.industries {
  padding: 6rem 0;
  background: var(--bg-panel);
}

.industry-scroll {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding-bottom: 2rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) var(--bg-dark);
}

.industry-scroll::-webkit-scrollbar {
  height: 8px;
}
.industry-scroll::-webkit-scrollbar-track {
  background: var(--bg-dark);
  border-radius: 4px;
}
.industry-scroll::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

.industry-card {
  min-width: 300px;
  flex-shrink: 0;
  scroll-snap-align: start;
  position: relative;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  filter: brightness(0.5);
}

.industry-card:hover img {
  transform: scale(1.1);
  filter: brightness(0.7);
}

.industry-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(7, 9, 19, 0.9));
  transform: translateY(20px);
  transition: transform 0.3s;
}

.industry-card:hover .industry-overlay {
  transform: translateY(0);
}
.industry-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #fff;
}
.industry-overlay p {
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials {
  padding: 6rem 0;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testi-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  position: relative;
}

.testi-card::before {
  content: "\201C";
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 5rem;
  font-family: serif;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
}

.stars {
  color: #ffd700;
  margin-bottom: 1rem;
}
.testi-text {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-family: var(--font-heading);
}
.author-info h4 {
  margin: 0;
  font-size: 1rem;
  font-family: var(--font-body);
}
.author-info span {
  font-size: 0.8rem;
  color: var(--primary-color);
}

/* ==========================================================================
   Contact/Quote Section (Also used on Contact Page)
   ========================================================================== */
.contact-section {
  padding: 6rem 0;
  background: var(--bg-panel);
  position: relative;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  background: var(--bg-dark);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.contact-info-panel {
  background: linear-gradient(
    135deg,
    rgba(112, 0, 255, 0.1),
    rgba(0, 240, 255, 0.05)
  );
  padding: 4rem;
  border-right: 1px solid var(--border-color);
}

.info-panel-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.contact-methods {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-method {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.method-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.1);
  color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  border: 1px solid rgba(0, 240, 255, 0.2);
}
.method-details h3 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}
.method-details p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-form-wrapper {
  padding: 4rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: #fff;
  font-family: inherit;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.05);
}
.form-group.full-width {
  grid-column: span 2;
}
.form-submit-btn {
  width: max-content;
  margin-top: 1rem;
}

/* Subpage Header overrides */
.page-header {
  padding: 10rem 0 5rem;
  text-align: center;
  background: linear-gradient(to bottom, rgba(7, 9, 19, 1), transparent);
  border-bottom: 1px solid var(--border-color);
}
.page-title {
  font-size: 3.5rem;
}
.breadcrumbs {
  color: var(--primary-color);
  font-size: 0.9rem;
  margin-top: 1rem;
}
.breadcrumbs span {
  color: var(--text-muted);
}

/* Legal Content overrides */
.legal-content {
  padding: 5rem 0;
}
.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
}
.content-wrapper h2 {
  margin-top: 2rem;
  color: var(--primary-color);
  font-size: 1.5rem;
}
.content-wrapper p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}
.content-wrapper ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  list-style: disc;
}

/* ==========================================================================
   Live Chat Widget
   ========================================================================== */
.chat-widget-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--bg-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 5px 20px var(--primary-glow);
  z-index: 1000;
  transition: transform 0.3s;
}
.chat-widget-btn:hover {
  transform: scale(1.1);
}

.chat-window {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 350px;
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  z-index: 1000;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.chat-window.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.chat-header {
  background: var(--secondary-color);
  padding: 1rem;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-body {
  padding: 1.5rem;
  height: 300px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--bg-dark);
}
.chat-msg {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.8rem;
  border-radius: 8px;
  font-size: 0.9rem;
  width: 85%;
}
.chat-msg.agent {
  border-left: 3px solid var(--primary-color);
}
.chat-input {
  display: flex;
  border-top: 1px solid var(--border-color);
  background: var(--bg-panel);
}
.chat-input input {
  flex: 1;
  background: none;
  border: none;
  padding: 1rem;
  color: #fff;
  outline: none;
}
.chat-input button {
  background: none;
  border: none;
  padding: 0 1rem;
  color: var(--primary-color);
  cursor: pointer;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: #04050a;
  padding-top: 5rem;
  border-top: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  height: 60px;
  margin-bottom: 1.5rem;
  filter: invert(1) drop-shadow(0 0 5px var(--primary-glow));
}
.footer-about-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.social-links {
  display: flex;
  gap: 1rem;
}
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  border: 1px solid transparent;
}
.social-link:hover {
  background: var(--primary-color);
  color: var(--bg-dark);
  border-color: var(--primary-color);
  box-shadow: 0 0 10px var(--primary-glow);
  transform: translateY(-3px);
}

.footer-col-title {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #fff;
  position: relative;
  padding-bottom: 0.5rem;
}
.footer-col-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-color);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-links a {
  color: var(--text-muted);
  transition: color 0.3s;
  font-size: 0.95rem;
}
.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.contact-info i {
  color: var(--primary-color);
  margin-top: 5px;
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  background: #020306;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes rotate3d {
  0% {
    transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotateX(360deg) rotateY(360deg);
  }
}
@keyframes growUp {
  from {
    height: 0%;
  }
}

.animate-on-scroll {
  opacity: 0;
  transition: all 0.8s ease-out;
}
.fade-in-up {
  transform: translateY(50px);
}
.fade-in-left {
  transform: translateX(-50px);
}
.fade-in-right {
  transform: translateX(50px);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translate(0);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .hero-text p {
    margin: 0 auto 2rem;
  }
  .hero-actions {
    justify-content: center;
  }
  .calc-wrapper {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-list,
  .header-cta {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .reports-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .contact-info-panel,
  .contact-form-wrapper {
    padding: 2rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .page-title {
    font-size: 2.5rem;
  }
}
