/*
================================================
TABLE OF CONTENTS
================================================
1.  GLOBAL & ROOT STYLES
    - CSS Variables
    - Font Imports & Base Styles
    - Custom Scrollbar
2.  HELPER CLASSES & KEYFRAMES
    - Container, Text Alignment
    - Animations (Fade In, etc.)
3.  BACKGROUND & CURSOR
    - Particle Canvas
    - Aurora Background
    - Custom Cursor
4.  HEADER & NAVIGATION
    - Header Layout
    - Logo & Navigation Links
    - Header Actions & Buttons
    - Sticky Header State
    - Mobile Navigation (Toggle & Menu)
5.  BUTTONS & UI ELEMENTS
    - Primary & Secondary Buttons
    - Magnetic Effect Placeholder
6.  PAGE-SPECIFIC SECTIONS
    - Hero Section
    - Page Header (for subpages)
    - About Section
    - Services Section (3D Cards)
    - Industry Section
    - Report Section
    - Testimonials Section
    - CTA Section
7.  CONTACT PAGE
    - Contact Form & Info Panel
    - Form Input Styling
    - Success Popup
8.  LEGAL PAGES
    - Legal Content Wrapper
9.  FOOTER
    - Footer Grid Layout
    - Footer Columns & Links
    - Footer Bottom
10. RESPONSIVE DESIGN (Media Queries)
    - Large Desktops (1200px+)
    - Tablets (max 992px)
    - Mobile (max 768px)
    - Small Mobile (max 480px)
================================================
*/

/* 1. GLOBAL & ROOT STYLES
------------------------------------------------ */
:root {
  --primary-color-start: #4f46e5;
  --primary-color-end: #a855f7;
  --secondary-color: #1f2937;
  --background-color: #0a0a0f;
  --surface-color: rgba(255, 255, 255, 0.03);
  --surface-border: rgba(255, 255, 255, 0.1);
  --text-color-primary: #f0f0f5;
  --text-color-secondary: #a0a0b0;
  --font-heading: "Orbitron", sans-serif;
  --font-body: "Rajdhani", sans-serif;
  --header-height: 80px;
  --border-radius: 12px;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--background-color);
  color: var(--text-color-primary);
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-color-primary);
  line-height: 1.2;
  font-weight: 700;
}

p {
  color: var(--text-color-secondary);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

a {
  color: var(--text-color-primary);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--primary-color-start);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--background-color);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(
    var(--primary-color-start),
    var(--primary-color-end)
  );
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    var(--primary-color-end),
    var(--primary-color-start)
  );
}

/* 2. HELPER CLASSES & KEYFRAMES
------------------------------------------------ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center {
  text-align: center;
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 900;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-color-secondary);
  max-width: 600px;
  margin: 0 auto 3rem auto;
}

.gradient-text {
  background: linear-gradient(
    90deg,
    var(--primary-color-start),
    var(--primary-color-end)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

/* Scroll Animations */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}
.animate-in[data-animation="fade-in-left"] {
  transform: translateX(-30px);
}
.animate-in[data-animation="fade-in-right"] {
  transform: translateX(30px);
}
.animate-in.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}
.animate-in.is-visible[style*="--delay"] {
  transition-delay: var(--delay);
}

/* Keyframes */
@keyframes aurora {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* 3. BACKGROUND & CURSOR
------------------------------------------------ */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
}

.aurora-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      ellipse at top left,
      rgba(79, 70, 229, 0.2),
      transparent 50%
    ),
    radial-gradient(
      ellipse at bottom right,
      rgba(168, 85, 247, 0.2),
      transparent 50%
    );
  z-index: -3;
  opacity: 0.5;
  animation: aurora 20s ease-in-out infinite;
  pointer-events: none;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary-color-start);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
  transition:
    width 0.3s,
    height 0.3s,
    background-color 0.3s;
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 1px solid var(--primary-color-start);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 9998;
  pointer-events: none;
  transition:
    transform 0.2s ease-out,
    opacity 0.3s;
}

body:hover .cursor-outline.hover,
body:hover .cursor-dot.hover {
  transform: translate(-50%, -50%) scale(1.5);
  background-color: rgba(79, 70, 229, 0.5);
}

/* 4. HEADER & NAVIGATION
------------------------------------------------ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  display: flex;
  align-items: center;
  z-index: 1000;
  transition:
    background-color 0.3s ease,
    backdrop-filter 0.3s ease,
    height 0.3s ease;
}

.header.scrolled {
  background-color: rgba(10, 10, 15, 0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--surface-border);
  height: 70px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo .logo-img {
  height: 40px;
  filter: invert(1);
  transition: var(--transition-smooth);
}
.logo:hover .logo-img {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--primary-color-start),
    var(--primary-color-end)
  );
  transition: width 0.3s ease-in-out;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-close {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text-color-primary);
}

/* 5. BUTTONS & UI ELEMENTS
------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  z-index: 1;
}

.btn span {
  position: relative;
  z-index: 2;
}

.btn i {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.btn-primary {
  background: linear-gradient(
    90deg,
    var(--primary-color-start),
    var(--primary-color-end)
  );
  color: #fff;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--primary-color-end),
    var(--primary-color-start)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover i {
  transform: rotate(-45deg);
}

.btn-secondary {
  background-color: var(--surface-color);
  border: 1px solid var(--surface-border);
  color: var(--text-color-primary);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-color-start);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
}

.magnetic-link {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* 6. PAGE-SPECIFIC SECTIONS
------------------------------------------------ */

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-height);
  text-align: center;
  position: relative;
}

.hero-container {
  max-width: 900px;
}

.hero-headline {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-headline span {
  display: block;
}

.hero-subheadline {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
}

.hero-scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-link {
  font-family: var(--font-body);
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.7;
}
.scroll-link:hover {
  opacity: 1;
  color: var(--text-color-primary);
}
.scroll-link i {
  animation: float 2s ease-in-out infinite;
}

/* Page Header */
.page-header-section {
  padding: 150px 0 80px;
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 15, 0.5) 0%,
    transparent 100%
  );
}
.page-header-section h1 {
  font-size: 3.5rem;
}
.page-header-desc {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 1rem auto 1.5rem;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-color-secondary);
}
.breadcrumbs a:hover {
  color: var(--primary-color-start);
}
.breadcrumbs i {
  font-size: 0.8rem;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-image {
  width: 350px;
  height: 350px;
  background: linear-gradient(
    145deg,
    var(--primary-color-start),
    var(--primary-color-end)
  );
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: pulse 5s ease-in-out infinite;
}
.about-icon {
  font-size: 10rem;
  color: rgba(10, 10, 15, 0.5);
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--surface-border);
  padding-top: 2rem;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-color-start);
}
.stat-label {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text-color-secondary);
}

/* Services Section */
.services-section {
  background: radial-gradient(
    circle at 50% 50%,
    rgba(79, 70, 229, 0.05),
    transparent 70%
  );
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card-wrapper {
  perspective: 1000px;
}

.service-card {
  background: var(--surface-color);
  border: 1px solid var(--surface-border);
  border-radius: var(--border-radius);
  padding: 2.5rem 2rem;
  height: 100%;
  text-align: center;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 40%
  );
  transition: transform 0.6s ease;
  transform-origin: center;
  z-index: 0;
  opacity: 0;
}

.service-card-wrapper:hover .service-card {
  transform: translateZ(20px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card-wrapper:hover .service-card::before {
  opacity: 1;
}

.service-card-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  background: linear-gradient(
    90deg,
    var(--primary-color-start),
    var(--primary-color-end)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.3s ease;
}
.service-card-wrapper:hover .service-card-icon {
  transform: scale(1.1);
}

.service-card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card-desc {
  font-size: 1rem;
}
.service-card > * {
  position: relative;
  z-index: 1;
}

/* Industry Section */
.industry-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.industry-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--text-color-secondary);
  transition: var(--transition-smooth);
}
.industry-logo:hover {
  color: var(--text-color-primary);
  transform: translateY(-5px);
}
.industry-logo i {
  font-size: 3rem;
}
.industry-logo span {
  font-family: var(--font-heading);
  font-weight: 500;
}

/* Report Section */
.report-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.report-visual-wrapper {
  perspective: 1500px;
}
.report-visual {
  transform: rotateY(-20deg) rotateX(10deg);
  transition: var(--transition-smooth);
  border-radius: var(--border-radius);
  box-shadow: -20px 20px 50px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}
.report-visual-wrapper:hover .report-visual {
  transform: rotateY(0) rotateX(0);
  box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.2);
}
.report-img {
  border: 1px solid var(--surface-border);
  border-radius: var(--border-radius);
}

/* Testimonials Section */
.testimonial-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--surface-color);
  border: 1px solid var(--surface-border);
  border-radius: var(--border-radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.testimonial-text {
  flex-grow: 1;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 2rem;
}
.testimonial-text::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.5rem;
  color: var(--primary-color-start);
  opacity: 0.5;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--surface-border);
}

.author-name {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.author-title {
  font-size: 0.9rem;
  margin: 0;
}

/* Live Chat Bubble */
.live-chat-bubble {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(
    45deg,
    var(--primary-color-start),
    var(--primary-color-end)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 5px 20px rgba(79, 70, 229, 0.4);
  animation: pulse 3s infinite;
}

/* CTA Section */
.cta-section {
  background: radial-gradient(
    ellipse at center,
    rgba(79, 70, 229, 0.1),
    transparent 70%
  );
}
.cta-title {
  font-size: 3rem;
}
.cta-text {
  max-width: 600px;
  margin: 1rem auto 2rem;
}

/* 7. CONTACT PAGE
------------------------------------------------ */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  background: var(--surface-color);
  border: 1px solid var(--surface-border);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.contact-info-panel {
  background: linear-gradient(
    160deg,
    var(--primary-color-start),
    var(--primary-color-end)
  );
  padding: 3rem;
  color: #fff;
}
.contact-info-panel h3 {
  color: #fff;
  font-size: 2rem;
}
.contact-info-panel p,
.contact-info-panel a {
  color: rgba(255, 255, 255, 0.8);
}
.contact-info-panel a:hover {
  color: #fff;
}
.contact-details-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-details-list li {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.contact-details-list i {
  font-size: 1.5rem;
  margin-top: 5px;
}
.contact-details-list h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}
.contact-details-list p {
  margin: 0;
}

.contact-form-wrapper {
  padding: 3rem;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.contact-form .form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--surface-border);
  border-radius: 8px;
  color: var(--text-color-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--primary-color-start);
}

.contact-form label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--text-color-secondary);
  pointer-events: none;
  transition: all 0.2s ease;
}

.contact-form input:focus + label,
.contact-form input:valid + label,
.contact-form textarea:focus + label,
.contact-form textarea:valid + label,
.contact-form select:valid + label {
  top: -0.75rem;
  left: 0.75rem;
  font-size: 0.8rem;
  padding: 0 0.25rem;
  background-color: var(--surface-color);
  color: var(--primary-color-start);
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23a0a0b0' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 1rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 3rem;
}
.contact-form select option {
  background-color: var(--secondary-color);
  color: var(--text-color-primary);
}
.contact-form .select-label {
  top: -0.75rem;
  left: 0.75rem;
  font-size: 0.8rem;
  padding: 0 0.25rem;
  background-color: var(--surface-color);
  color: var(--text-color-secondary);
}
.contact-form select:focus + .select-label {
  color: var(--primary-color-start);
}

/* Success Popup */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.popup.show {
  opacity: 1;
  pointer-events: auto;
}
.popup-content {
  background-color: var(--secondary-color);
  padding: 3rem;
  border-radius: var(--border-radius);
  text-align: center;
  max-width: 500px;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.popup.show .popup-content {
  transform: scale(1);
}
.popup-icon {
  font-size: 4rem;
  color: #22c55e;
  margin-bottom: 1.5rem;
}
.popup-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.popup-content p {
  margin-bottom: 2rem;
}

/* 8. LEGAL PAGES
------------------------------------------------ */
.legal-content-wrapper {
  background: var(--surface-color);
  border: 1px solid var(--surface-border);
  border-radius: var(--border-radius);
  padding: 3rem;
}
.legal-content h2 {
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--surface-border);
}
.legal-content p {
  line-height: 1.8;
}

/* 9. FOOTER
------------------------------------------------ */
.footer {
  background-color: var(--secondary-color);
  padding: 80px 0 0;
  border-top: 1px solid var(--surface-border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-logo .logo-img {
  height: 40px;
  margin-bottom: 1rem;
}
.footer-about-text {
  font-size: 1rem;
  max-width: 300px;
  margin-bottom: 1.5rem;
}
.social-links {
  display: flex;
  gap: 1rem;
}
.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--surface-color);
  border: 1px solid var(--surface-border);
  border-radius: 50%;
  font-size: 1rem;
}
.social-links a:hover {
  background-color: var(--primary-color-start);
  color: #fff;
  border-color: var(--primary-color-start);
}

.footer-col-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}
.footer-links ul li {
  margin-bottom: 0.75rem;
}
.footer-links ul a {
  color: var(--text-color-secondary);
}
.footer-links ul a:hover {
  color: var(--text-color-primary);
  padding-left: 5px;
}

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-color-secondary);
}
.footer-contact ul a {
  color: var(--text-color-secondary);
}
.footer-contact ul a:hover {
  color: var(--text-color-primary);
}

.footer-bottom {
  border-top: 1px solid var(--surface-border);
  padding: 1.5rem 0;
  text-align: center;
  color: var(--text-color-secondary);
  font-size: 0.9rem;
}

/* 10. RESPONSIVE DESIGN
------------------------------------------------ */

/* Tablets and small desktops */
@media (max-width: 992px) {
  .section-title {
    font-size: 2.5rem;
  }
  .hero-headline {
    font-size: 4rem;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--background-color);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease-in-out;
    z-index: 1001;
  }
  .nav-menu.show {
    right: 0;
  }
  .nav-list {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .nav-link {
    font-size: 1.5rem;
  }
  .nav-toggle {
    display: block;
    z-index: 1002;
  }
  .nav-close {
    display: block;
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--text-color-primary);
  }

  .about-grid,
  .report-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-image-wrapper {
    margin-bottom: 2rem;
  }
  .about-stats {
    justify-content: center;
  }
  .report-visual-wrapper {
    margin-top: 2rem;
  }
  .report-visual {
    transform: rotate(0);
  }

  .testimonial-slider {
    grid-template-columns: 1fr;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-about {
    grid-column: 1 / -1;
    text-align: center;
  }
  .social-links {
    justify-content: center;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  .section-padding {
    padding: 80px 0;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .hero-headline {
    font-size: 3rem;
  }
  .hero-subheadline {
    font-size: 1.1rem;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-col ul {
    margin: 0 auto;
  }
  .footer-contact ul li {
    justify-content: center;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  body {
    cursor: auto;
  }
  .cursor-dot,
  .cursor-outline {
    display: none;
  }
  .hero-headline {
    font-size: 2.5rem;
  }
  .btn {
    padding: 0.7rem 1.4rem;
    font-size: 0.9rem;
  }
  .btn-lg {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
  .contact-info-panel,
  .contact-form-wrapper,
  .legal-content-wrapper {
    padding: 2rem;
  }
}
