/* =========================================
   VARIABLES & GLOBAL SETUP
   ========================================= */
:root {
  --bg-1: #07070a;
  --bg-2: #121217;
  --accent: #4f46e5;
  --accent-sec: #00f0ff;
  --text-1: #ffffff;
  --text-2: #a0a0b0;
  --border-color: rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(20, 20, 25, 0.6);
  --glass-border: rgba(255, 255, 255, 0.1);

  --font-heading: "Orbitron", sans-serif;
  --font-body: "Rajdhani", sans-serif;

  --trans-fast: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  --trans-slow: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg-1);
}

body {
  background-color: var(--bg-1);
  color: var(--text-2);
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none; /* Hide default cursor for custom cursor */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-1);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-padding {
  padding: 100px 0;
}

.dark-bg {
  background-color: var(--bg-2);
}

/* =========================================
   CUSTOM CURSOR
   ========================================= */
.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-sec);
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
  transition:
    width 0.2s,
    height 0.2s;
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 1px solid var(--accent-sec);
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 9998;
  pointer-events: none;
  transition:
    width 0.2s,
    height 0.2s,
    background-color 0.2s;
}

/* =========================================
   TYPOGRAPHY & UTILS
   ========================================= */
.accent-color {
  color: var(--accent-sec);
}
.accent-gradient {
  background: linear-gradient(90deg, var(--accent), var(--accent-sec));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-center {
  text-align: center;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(79, 70, 229, 0.1);
  border: 1px solid var(--accent);
  color: var(--accent-sec);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 30px;
  margin-bottom: 20px;
}

/* Scroll Reveals */
/* Scroll Reveals - FIX */
.reveal-up {
  opacity: 1;
  transform: translateY(0);
  transition: all 1s ease;
}
.reveal-left {
  opacity: 1;
  transform: translateX(0);
  transition: all 1s ease;
}
.reveal-right {
  opacity: 1;
  transform: translateX(0);
  transition: all 1s ease;
}
.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translate(0, 0);
}
.delay-1 {
  transition-delay: 0.2s;
}
.delay-2 {
  transition-delay: 0.4s;
}
.delay-3 {
  transition-delay: 0.6s;
}

/* =========================================
   HEADER & NAV
   ========================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--trans-fast);
  background: transparent;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  padding: 15px 0;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  height: 60px;
  filter: invert(1);
}
.nav-list {
  display: flex;
  gap: 40px;
}
.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 5px 0;
  transition: var(--trans-fast);
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-sec);
  transition: var(--trans-fast);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-link.active {
  color: var(--text-1);
}

/* Buttons */
.btn-primary,
.btn-secondary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 35px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 40px;
  overflow: hidden;
  z-index: 1;
  border: none;
}
.btn-primary {
  background: transparent;
  color: var(--text-1);
  border: 1px solid var(--accent-sec);
}
.btn-primary .btn-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-sec));
  z-index: -1;
  transition: var(--trans-fast);
}
.btn-primary:hover .btn-bg {
  opacity: 0.8;
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-1);
  transition: var(--trans-fast);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--text-1);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: none;
  z-index: 1100;
}
.hamburger {
  width: 30px;
  height: 20px;
  position: relative;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-1);
  position: absolute;
  left: 0;
  transition: var(--trans-fast);
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 9px;
}
.hamburger span:nth-child(3) {
  top: 18px;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 10, 15, 0.98);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--trans-fast);
}
.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav-list {
  text-align: center;
}
.mobile-link {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--text-1);
  display: block;
  margin: 20px 0;
  text-transform: uppercase;
  transition: var(--trans-fast);
}
.mobile-link:hover,
.mobile-link.active {
  color: var(--accent-sec);
}

/* =========================================
   COMPONENTS
   ========================================= */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.glass-hero {
  position: relative;
  padding: 200px 0 100px;
  overflow: hidden;
}
.bg-mesh {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(79, 70, 229, 0.15) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(0, 240, 255, 0.1) 0%,
      transparent 30%
    );
  z-index: -1;
  animation: meshRotate 20s linear infinite;
}
@keyframes meshRotate {
  100% {
    transform: rotate(360deg);
  }
}

/* =========================================
   INDEX PAGES SECTIONS
   ========================================= */
/* Hero Section */
.hero-title {
  font-size: 5rem;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 1.3rem;
  max-width: 600px;
  margin-bottom: 40px;
}
.hero-cta {
  display: flex;
  gap: 20px;
}
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
}
.mouse {
  width: 25px;
  height: 40px;
  border: 2px solid var(--text-2);
  border-radius: 15px;
  position: relative;
}
.mouse::after {
  content: "";
  width: 3px;
  height: 8px;
  background: var(--text-2);
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
  animation: mouseScroll 1.5s infinite;
}
@keyframes mouseScroll {
  0% {
    top: 8px;
    opacity: 1;
  }
  100% {
    top: 20px;
    opacity: 0;
  }
}

/* Marquee Metrics */
.marquee-section {
  background: var(--accent);
  padding: 15px 0;
  overflow: hidden;
  transform: rotate(-2deg);
  margin: 50px -20px;
}
.marquee-container {
  display: flex;
  width: 200%;
}
.marquee-content {
  display: flex;
  animation: marquee 15s linear infinite;
}
.marquee-content span {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0 40px;
  white-space: nowrap;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.check-list li {
  margin: 15px 0;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 15px;
}
.check-list i {
  color: var(--accent-sec);
}
.visual-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: conic-gradient(var(--accent-sec) 0% 87%, transparent 87% 100%);
  margin: 0 auto 30px;
  position: relative;
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.2);
}
.visual-circle::after {
  content: "87%";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  background: var(--bg-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-1);
}
.visual-data h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  overflow: hidden;
}
.progress-bar .fill {
  height: 100%;
  background: var(--accent-sec);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.service-card {
  transition: transform 0.3s;
  transform-style: preserve-3d;
}
.icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: rgba(79, 70, 229, 0.1);
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-sec);
  margin-bottom: 25px;
}
.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.text-link {
  color: var(--accent-sec);
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

/* Calculator */
.calc-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.calc-form .input-group {
  margin-bottom: 30px;
}
.calc-form label {
  display: block;
  font-family: var(--font-heading);
  margin-bottom: 10px;
  color: var(--text-1);
}
.slider {
  width: 100%;
  appearance: none;
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  border-radius: 5px;
}
.slider::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-sec);
  cursor: none;
}
.val-display {
  display: block;
  text-align: right;
  margin-top: 10px;
  font-weight: 700;
  color: var(--accent-sec);
}
.calc-results {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}
.result-box {
  flex: 1;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 10px;
}
.result-box.highlighted {
  border-color: var(--accent);
  background: rgba(79, 70, 229, 0.05);
}

/* Process Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0;
  padding-left: 50px;
  border-left: 2px dashed var(--border-color);
}
.timeline-item {
  position: relative;
  margin-bottom: 50px;
}
.timeline-dot {
  position: absolute;
  left: -75px;
  top: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-1);
  border: 2px solid var(--accent-sec);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-1);
}

/* Report / Dashboard Mockup */
.dashboard-mockup {
  max-width: 900px;
  margin: 50px auto 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}
.dash-header {
  background: rgba(0, 0, 0, 0.5);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--glass-border);
}
.dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 8px;
}
.dots .red {
  background: #ff5f56;
}
.dots .yellow {
  background: #ffbd2e;
}
.dots .green {
  background: #27c93f;
}
.dash-title {
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--text-2);
}
.dash-body {
  display: flex;
  height: 400px;
}
.dash-sidebar {
  width: 80px;
  background: rgba(255, 255, 255, 0.02);
  border-right: 1px solid var(--glass-border);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.dash-nav-item {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}
.dash-nav-item.active {
  background: var(--accent);
}
.dash-content {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.dash-stats {
  display: flex;
  gap: 20px;
}
.stat-card {
  flex: 1;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  border: 1px solid var(--glass-border);
}
.stat-card .label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.stat-card .value {
  font-size: 1.8rem;
  font-family: var(--font-heading);
  color: var(--text-1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.green-text {
  color: #27c93f;
  font-size: 1rem;
}
.dash-chart {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  padding-top: 20px;
}
.chart-bar {
  flex: 1;
  background: linear-gradient(0deg, var(--accent), var(--accent-sec));
  border-radius: 5px 5px 0 0;
  opacity: 0.8;
  transition: var(--trans-fast);
}
.chart-bar:hover {
  opacity: 1;
  transform: scaleY(1.05);
}

/* Industries */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 50px;
}
.industry-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  padding: 40px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--trans-fast);
}
.industry-item i {
  font-size: 2.5rem;
  color: var(--text-2);
  margin-bottom: 20px;
  transition: var(--trans-fast);
}
.hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transform: translateY(100%);
  transition: var(--trans-fast);
}
.industry-item:hover .hover-overlay {
  opacity: 1;
  transform: translateY(0);
}
.industry-item:hover i {
  color: var(--accent-sec);
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.test-card {
  position: relative;
}
.quote-icon {
  font-size: 3rem;
  color: rgba(0, 240, 255, 0.1);
  position: absolute;
  top: 30px;
  right: 30px;
}
.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
  border-top: 1px solid var(--glass-border);
  padding-top: 20px;
}
.client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--accent), var(--accent-sec));
}
.client-info h4 {
  font-size: 1.1rem;
}
.client-info span {
  font-size: 0.9rem;
  color: var(--accent-sec);
}

/* CTA Section */
.cta-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background: linear-gradient(
    135deg,
    rgba(20, 20, 25, 0.8),
    rgba(79, 70, 229, 0.1)
  );
  border: 1px solid var(--accent);
}
.cta-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.cta-content p {
  margin-bottom: 30px;
  font-size: 1.2rem;
}
.chat-mockup {
  background: var(--bg-1);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  overflow: hidden;
}
.chat-header {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  font-family: var(--font-heading);
  font-weight: 700;
  border-bottom: 1px solid var(--glass-border);
}
.chat-messages {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.msg {
  padding: 10px 15px;
  border-radius: 10px;
  max-width: 80%;
  font-size: 0.9rem;
}
.msg.bot {
  background: rgba(79, 70, 229, 0.2);
  align-self: flex-start;
  border-bottom-left-radius: 0;
}
.msg.user {
  background: var(--accent-sec);
  color: var(--bg-1);
  align-self: flex-end;
  border-bottom-right-radius: 0;
}

/* =========================================
   CONTACT PAGE & FORMS
   ========================================= */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-details-grid {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}
.contact-card {
  display: flex;
  flex-direction: column;
  padding: 25px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
}
.contact-icon {
  font-size: 1.5rem;
  color: var(--accent-sec);
  margin-bottom: 15px;
}
.form-container-glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(15px);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.input-group {
  position: relative;
  margin-bottom: 30px;
}
.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--glass-border);
  padding: 10px 0;
  color: var(--text-1);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
}
.input-group label {
  position: absolute;
  top: 10px;
  left: 0;
  color: var(--text-2);
  transition: var(--trans-fast);
  pointer-events: none;
}
.input-group input:focus ~ label,
.input-group input:valid ~ label,
.input-group select:focus ~ label,
.input-group select:valid ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:valid ~ label {
  top: -20px;
  font-size: 0.8rem;
  color: var(--accent-sec);
}
.input-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-sec);
  transition: var(--trans-fast);
}
.input-group input:focus ~ .input-line,
.input-group textarea:focus ~ .input-line,
.input-group select:focus ~ .input-line {
  width: 100%;
}
.w-100 {
  width: 100%;
}
option {
  background: var(--bg-1);
  color: var(--text-1);
}
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}
.popup-overlay.active {
  display: flex;
}
.popup-box {
  background: var(--bg-1);
  border: 1px solid var(--accent);
  border-radius: 20px;
  padding: 40px;
  max-width: 400px;
  text-align: center;
  position: relative;
}
.popup-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-1);
  cursor: none;
}
.popup-icon {
  font-size: 4rem;
  color: #27c93f;
  margin-bottom: 20px;
}

/* =========================================
   LEGAL PAGES
   ========================================= */
.legal-hero {
  padding: 150px 0 50px;
  text-align: center;
}
.legal-hero .page-title {
  font-size: 4rem;
}
.legal-content-section {
  padding-top: 0;
}
.text-container {
  max-width: 900px;
  margin: 0 auto;
}
.document-wrapper {
  padding: 50px;
}
.legal-section {
  margin-bottom: 40px;
}
.legal-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--accent-sec);
}
.legal-section p {
  margin-bottom: 15px;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  position: relative;
  background: var(--bg-2);
  border-top: 1px solid var(--glass-border);
  padding: 80px 0 30px;
  overflow: hidden;
}
.footer-glow {
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 50%;
  background: radial-gradient(
    circle,
    rgba(79, 70, 229, 0.2) 0%,
    transparent 70%
  );
  filter: blur(50px);
  pointer-events: none;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-logo img {
  height: 60px;
  filter: invert(1);
  margin-bottom: 20px;
}
.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans-fast);
}
.social-link:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-5px);
}
.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.links-col ul li {
  margin-bottom: 10px;
}
.links-col a {
  transition: var(--trans-fast);
}
.links-col a:hover {
  color: var(--accent-sec);
  padding-left: 10px;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}
.footer-contact i {
  color: var(--accent-sec);
  margin-top: 5px;
}
.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-2);
}
.footer-legal-links {
  display: flex;
  gap: 20px;
}
.footer-legal-links a:hover {
  color: var(--text-1);
}

/* =========================================
   MEDIA QUERIES
   ========================================= */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
  .about-grid,
  .calc-wrapper,
  .cta-box,
  .contact-wrapper,
  .footer-top {
    grid-template-columns: 1fr;
  }
  .dash-body {
    flex-direction: column;
    height: auto;
  }
  .dash-sidebar {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    padding: 10px;
    border-right: none;
    border-bottom: 1px solid var(--glass-border);
  }
}

@media (max-width: 768px) {
  .nav-list,
  .header-actions .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-cta {
    flex-direction: column;
  }
  .timeline {
    padding-left: 30px;
  }
  .timeline-dot {
    left: -55px;
    width: 40px;
    height: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .document-wrapper {
    padding: 30px 20px;
  }
  .cursor-dot,
  .cursor-outline {
    display: none;
  } /* Disable custom cursor on mobile */
  body {
    cursor: auto;
  }
  a,
  button {
    cursor: pointer;
  }
}
