/* ---
Root Variables & Basic Setup
--- */
:root {
  --primary-color: #4a90e2;
  --secondary-color: #8e44ad;
  --accent-color: #00e0c6;
  --dark-bg: #121828;
  --medium-bg: #1a2238;
  --light-bg: #2c3a57;
  --text-light: #f0f4f8;
  --text-medium: #a9b4c8;
  --text-dark: #818da8;
  --font-family: "Poppins", sans-serif;
  --header-height: 80px;
  --border-radius: 12px;
  --transition-speed: 0.3s ease;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1,
h2,
h3,
h4 {
  line-height: 1.3;
  font-weight: 700;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: var(--transition-speed);
}

a:hover {
  color: var(--primary-color);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.highlight {
  color: var(--accent-color);
  text-shadow: 0 0 10px rgba(0, 224, 198, 0.4);
}

/* ---
Background Blobs
--- */
.background-blobs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  filter: blur(100px);
}

.blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
}

.blob1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    var(--primary-color) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  animation: move1 25s infinite alternate;
}

.blob2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    var(--secondary-color) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  animation: move2 30s infinite alternate;
}

.blob3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    var(--accent-color) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  animation: move3 20s infinite alternate;
}

@keyframes move1 {
  0% {
    transform: translate(-20%, -20%) scale(1);
  }
  100% {
    transform: translate(40%, 30%) scale(1.2);
  }
}

@keyframes move2 {
  0% {
    transform: translate(80%, 60%) scale(1.1);
  }
  100% {
    transform: translate(20%, -30%) scale(0.9);
  }
}

@keyframes move3 {
  0% {
    transform: translate(10%, 80%) scale(0.8);
  }
  100% {
    transform: translate(70%, 50%) scale(1.1);
  }
}

/* ---
Buttons
--- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.7s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.5);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--light-bg);
}

.btn-secondary:hover {
  background-color: var(--light-bg);
  color: var(--accent-color);
  transform: translateY(-3px);
}

.btn i {
  transition: transform 0.3s ease;
}

.btn:hover i {
  transform: translateX(3px);
}

/* ---
Header & Navigation
--- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 20px;
  height: var(--header-height);
  transition: all 0.4s ease;
  background: rgba(18, 24, 40, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(44, 58, 87, 0.5);
}

.header.scrolled {
  box-shadow: var(--shadow);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo {
  height: 45px;
}

.nav-list {
  display: flex;
  gap: 40px;
}

.nav-link {
  color: var(--text-medium);
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-light);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1002;
}

.mobile-toggle .bar {
  width: 100%;
  height: 3px;
  background-color: var(--text-light);
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  max-width: 300px;
  height: 100vh;
  background: var(--medium-bg);
  z-index: 1001;
  transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
}
.mobile-nav.open {
  right: 0;
}
.mobile-nav nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 30px;
}

.mobile-nav nav ul li a {
  color: var(--text-light);
  font-size: 1.2rem;
  font-weight: 600;
}

/* ---
Main Content & Sections
--- */
main {
  padding-top: var(--header-height);
}

section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  display: inline-block;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.section-description {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-medium);
}

/* ---
Hero Section
--- */
.hero {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-content {
  text-align: left;
}

.hero-subtitle {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(44, 58, 87, 0.5);
  border-radius: 50px;
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 25px;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-medium);
  margin-bottom: 40px;
  max-width: 550px;
}

.hero-cta {
  display: flex;
  gap: 20px;
}

.hero-visual .scene {
  width: 300px;
  height: 300px;
  perspective: 1000px;
  margin: 0 auto;
}

.cube {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: rotate-cube 30s infinite linear;
}

.face {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(44, 58, 87, 0.6);
  border: 1px solid var(--light-bg);
  color: var(--text-light);
  font-size: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border-radius: var(--border-radius);
}
.face span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-medium);
}
.face i {
  color: var(--accent-color);
}

.front {
  transform: rotateY(0deg) translateZ(150px);
}
.back {
  transform: rotateY(180deg) translateZ(150px);
}
.right {
  transform: rotateY(90deg) translateZ(150px);
}
.left {
  transform: rotateY(-90deg) translateZ(150px);
}
.top {
  transform: rotateX(90deg) translateZ(150px);
}
.bottom {
  transform: rotateX(-90deg) translateZ(150px);
}

@keyframes rotate-cube {
  from {
    transform: rotateX(0deg) rotateY(0deg);
  }
  to {
    transform: rotateX(360deg) rotateY(360deg);
  }
}

/* ---
Services Section
--- */
.services-section {
  background-color: var(--medium-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--light-bg);
  padding: 40px;
  border-radius: var(--border-radius);
  text-align: center;
  border: 1px solid transparent;
  transition: all 0.4s ease;
  transform-style: preserve-3d;
}

.service-card:hover {
  transform: translateY(-10px) rotateX(5deg) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--accent-color);
}

.service-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: inline-block;
  transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.2) rotate(15deg);
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-description {
  color: var(--text-medium);
  margin-bottom: 25px;
}

.service-link {
  font-weight: 600;
}

.service-link i {
  transition: transform 0.3s ease;
  margin-left: 5px;
}

.service-link:hover i {
  transform: translateX(5px);
}

/* ---
About Section
--- */
.about-section .container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-visual img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.about-content .section-title,
.about-content .section-subtitle {
  text-align: left;
}
.about-content p {
  color: var(--text-medium);
  margin-bottom: 30px;
}

.about-features {
  list-style: none;
  margin-bottom: 40px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.about-features i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

/* ---
Stats Section
--- */
.stats-section {
  background:
    linear-gradient(rgba(18, 24, 40, 0.9), rgba(18, 24, 40, 0.9)),
    url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?q=80&w=2070&auto=format&fit=crop")
      no-repeat center center/cover;
  background-attachment: fixed;
}

.stats-section .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item i {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-medium);
}

/* ---
Testimonials Section
--- */
.testimonials-section {
  background-color: var(--medium-bg);
}

.testimonial-slider-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
  min-width: 100%;
  padding: 50px;
  background: var(--light-bg);
  border-radius: var(--border-radius);
  text-align: center;
}

.quote-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  opacity: 0.5;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-medium);
  margin-bottom: 30px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid var(--accent-color);
}

.author-name {
  font-size: 1.1rem;
}

.author-title {
  color: var(--text-dark);
}

.slider-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

.slider-controls button {
  background: var(--light-bg);
  color: var(--text-light);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition-speed);
}

.slider-controls button:hover {
  background: var(--accent-color);
  color: var(--dark-bg);
}

/* --- Industry Section --- */
.industry-section {
  padding: 100px 0;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.industry-item {
  background: var(--medium-bg);
  padding: 30px;
  border-radius: var(--border-radius);
  text-align: center;
  border-bottom: 4px solid transparent;
  transition: all 0.3s ease;
}

.industry-item:hover {
  transform: translateY(-10px);
  border-bottom-color: var(--accent-color);
  box-shadow: var(--shadow);
}

.industry-item i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.industry-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.industry-item p {
  color: var(--text-medium);
}

/* --- Interactive Section --- */
.interactive-section {
  background: var(--medium-bg);
}

.interactive-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.interactive-content .section-title {
  text-align: left;
}
.interactive-content .section-subtitle {
  text-align: left;
}

.calculator {
  margin-top: 30px;
  background: var(--light-bg);
  padding: 30px;
  border-radius: var(--border-radius);
}

.calculator .form-group {
  margin-bottom: 20px;
}

.calculator label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
}

.calculator input[type="range"] {
  width: 100%;
  cursor: pointer;
}

.calculator span {
  color: var(--accent-color);
  font-weight: 600;
}

.results {
  margin-top: 30px;
  border-top: 1px solid var(--light-bg);
  padding-top: 20px;
}

.results p {
  margin-bottom: 5px;
}

.report-mockup {
  background: var(--light-bg);
  border-radius: var(--border-radius);
  padding: 20px;
  box-shadow: var(--shadow);
  text-align: center;
}
.report-header h4 {
  margin-bottom: 15px;
  color: var(--text-medium);
}
.report-mockup img {
  border-radius: 8px;
}
.report-footer {
  margin-top: 15px;
}

/* ---
CTA Section
--- */
.cta-section {
  text-align: center;
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

.cta-title {
  font-size: 2.8rem;
  margin-bottom: 15px;
}
.cta-title .highlight {
  color: white;
  text-shadow: none;
}
.cta-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  background: white;
  color: var(--primary-color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  padding: 15px 35px;
  font-size: 1.1rem;
}

.cta-btn:hover {
  background: var(--dark-bg);
  color: white;
}

/* ---
Footer
--- */
.footer {
  background-color: var(--medium-bg);
  padding: 80px 0 0;
  font-size: 0.95rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 20px;
}

.footer-about-text {
  color: var(--text-medium);
  margin-bottom: 25px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--light-bg);
  color: var(--text-light);
  border-radius: 50%;
  transition: var(--transition-speed);
}

.social-link:hover {
  background: var(--accent-color);
  color: var(--dark-bg);
  transform: translateY(-3px);
}

.footer-col-title {
  font-size: 1.3rem;
  margin-bottom: 25px;
}

.footer-links ul li {
  margin-bottom: 15px;
}

.footer-links ul li a {
  color: var(--text-medium);
}

.footer-links ul li a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--text-medium);
}
.contact-info li a {
  color: var(--text-medium);
}
.contact-info li a:hover {
  color: var(--accent-color);
}

.contact-info i {
  color: var(--accent-color);
  margin-top: 5px;
}

.footer-bottom {
  border-top: 1px solid var(--light-bg);
  padding: 30px 0;
  text-align: center;
  color: var(--text-dark);
}

/* ---
Subpage (Contact, Legal) Styles
--- */
.page-header {
  text-align: center;
  padding: 80px 0;
  background: var(--medium-bg);
}
.page-header h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
}
.page-subtitle {
  max-width: 700px;
  margin: 0 auto 30px;
  color: var(--text-medium);
  font-size: 1.1rem;
}
.breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--text-dark);
}
.breadcrumbs a {
  color: var(--text-medium);
}
.breadcrumbs a:hover {
  color: var(--accent-color);
}
.breadcrumbs i {
  font-size: 0.8rem;
}

.contact-section-page {
  padding: 100px 0;
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  background: var(--medium-bg);
  padding: 50px;
  border-radius: var(--border-radius);
}
.contact-info-col h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.contact-info-col p {
  color: var(--text-medium);
  margin-bottom: 40px;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact-method {
  display: flex;
  gap: 20px;
  align-items: center;
}
.method-icon {
  width: 60px;
  height: 60px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-color);
}
.method-details h3 {
  margin-bottom: 5px;
}
.method-details p {
  margin: 0;
}
.method-details a {
  color: var(--text-medium);
}

.contact-form .form-row {
  display: flex;
  gap: 20px;
}
.form-group {
  flex: 1;
  margin-bottom: 25px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-medium);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px;
  background: var(--light-bg);
  border: 1px solid var(--dark-bg);
  border-radius: 8px;
  color: var(--text-light);
  font-family: var(--font-family);
  transition: var(--transition-speed);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(0, 224, 198, 0.2);
}
.form-submit-btn {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
}

/* Legal Pages */
.legal-content {
  padding: 100px 0;
}
.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: var(--medium-bg);
  padding: 50px;
  border-radius: var(--border-radius);
}
.content-wrapper h2 {
  font-size: 1.8rem;
  color: var(--accent-color);
  margin-top: 40px;
  margin-bottom: 20px;
}
.content-wrapper p {
  color: var(--text-medium);
  margin-bottom: 20px;
}
.content-wrapper strong {
  color: var(--text-light);
}

/* --- Popup --- */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}
.popup:target {
  opacity: 1;
  visibility: visible;
}
.popup-content {
  background: var(--medium-bg);
  padding: 40px;
  border-radius: var(--border-radius);
  text-align: center;
  position: relative;
  transform: scale(0.8);
  transition: all 0.4s;
  max-width: 450px;
}
.popup:target .popup-content {
  transform: scale(1);
}
.popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  color: var(--text-dark);
}
.popup-content i {
  font-size: 4rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}
.popup-content h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.popup-content p {
  color: var(--text-medium);
  margin-bottom: 30px;
}
.popup .btn {
  width: auto;
}

/* --- Live Chat Widget --- */
.live-chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: var(--shadow);
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s ease;
}
.live-chat-widget:hover {
  transform: scale(1.1) rotate(15deg);
}

/* ---
Animations & Scroll Effects
--- */
.animate-on-scroll {
  opacity: 0;
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}
.fade-in-up {
  transform: translateY(50px);
}
.slide-in-left {
  transform: translateX(-50px);
}
.slide-in-right {
  transform: translateX(50px);
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ---
Responsive Design
--- */
@media (max-width: 992px) {
  .nav {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    order: 2;
  }
  .hero-visual {
    order: 1;
    margin-bottom: 40px;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-cta {
    justify-content: center;
  }
  .about-section .container {
    grid-template-columns: 1fr;
  }
  .interactive-section .container {
    grid-template-columns: 1fr;
  }
  .stats-section .container {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-about,
  .footer-contact {
    grid-column: 1 / -1;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .contact-form .form-row {
    flex-direction: column;
    gap: 0;
  }
}

@media (max-width: 576px) {
  body {
    font-size: 15px;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  .stats-section .container {
    grid-template-columns: 1fr;
  }
  .stat-item:not(:last-child) {
    margin-bottom: 30px;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-col {
    text-align: center;
  }
  .social-links,
  .contact-info,
  .footer-links ul {
    justify-content: center;
  }
  .contact-info li {
    justify-content: center;
  }
  .slider-controls {
    display: none;
  } /* Hide controls on small screens, rely on swipe */
}
