   FOOTER
   =================================== */
.footer {
  background: var(--primary-dark);
  margin-top: var(--spacing-xl);
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-section {
  text-align: center;
  padding-top: var(--spacing-xl);
  margin-bottom: var(--spacing-sm);
  padding-bottom: var(--spacing-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-large {
  display: flex;
  justify-content: center;
  margin-bottom: var(--spacing-sm);
}

.footer-logo-large img {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 1rem;
  font-style: italic;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-sm);
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.footer-col {
  text-align: center;
}

.footer-logo {
  margin-bottom: var(--spacing-sm);
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.footer-description {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-col h4 {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-sm);
  color: var(--accent-orange);
}

.footer-links,
.footer-contact {
  list-style: none;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-orange);
}

.footer-contact {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Social Media */
.footer-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: var(--spacing-sm);
}

.footer-social .social-icon:nth-child(3) {
  display: none;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: var(--text-light);
  transition: var(--transition);
}

.social-icon:hover {
  color: var(--text-white);
  transform: translateY(-5px);
}

/* LinkedIn hover */
.social-icon[aria-label="LinkedIn"]:hover {
  background: #0a66c2;
  box-shadow: 0 5px 15px rgba(10, 102, 194, 0.4);
}

/* Twitter hover */
.social-icon[aria-label="Twitter"]:hover {
  background: #1da1f2;
  box-shadow: 0 5px 15px rgba(29, 161, 242, 0.4);
}

/* YouTube hover */
.social-icon[aria-label="YouTube"]:hover {
  background: #ff0000;
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

/* Instagram hover */
.social-icon[aria-label="Instagram"]:hover {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  box-shadow: 0 5px 15px rgba(225, 48, 108, 0.4);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-sm);
  padding-bottom: var(--spacing-sm);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-size: 0.875rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.back-to-top {
  width: 40px;
  height: 40px;
  background: var(--accent-orange);
  color: var(--text-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(165, 204, 67, 0.5);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet (768px and below) */
@media (max-width: 768px) {
  /* Navigation */
  .nav-menu {
    position: fixed;
    right: -70%;
    top: 70px;
    height: auto;
    max-height: calc(100vh - 80px);
    width: 70%;
    display: flex !important;
    flex-direction: column;
    background: linear-gradient(
      135deg,
      rgba(10, 22, 40, 0.98),
      rgba(30, 41, 59, 0.98)
    );
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.5);
    padding: 0.5rem 0;
    overflow-y: auto;
    z-index: 1001;
    gap: 0;
    border-radius: 0 0 0 8px;
  }

  .nav-menu li {
    width: 100%;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-menu .nav-link {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    border-right: 2px solid transparent;
    transition: all 0.3s ease;
  }

  .nav-menu .nav-link:hover,
  .nav-menu .nav-link.active {
    background: rgba(165, 204, 67, 0.1);
    border-right-color: var(--accent-orange);
    color: var(--text-white);
    padding-right: 1.25rem;
  }

  .nav-menu.active {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  /* Mobile Header Layout: Logo (left), Controls grouped (right) */
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
  }

  .logo {
    flex: 0 0 auto;
  }

  .language-selector {
    flex: 0 0 auto;
    margin: 0;
  }

  .hamburger {
    flex: 0 0 auto;
    margin: 0;
  }

  /* About Section */
  .about-grid {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .about-content {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0;
  }

  .about-text {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0;
  }

  .about-text p {
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
    box-sizing: border-box;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  /* Services */
  .services-grid {
      grid-template-columns: 1fr;
    }

    /* Companies */
    .companies-grid {
      grid-template-columns: 1fr;
    }

    /* Achievements */
    .achievement-item {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .achievement-number {
      font-size: 2.5rem;
    }

    /* Contact */
    .contact-grid,
    .contact-grid.reversed {
      grid-template-columns: 1fr;
    }

    .contact-info-left {
      order: -1;
    }

    /* Footer */
    .footer-grid {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .footer-bottom {
      flex-direction: column;
      gap: var(--spacing-sm);
    }
  }

  /* Mobile (480px and below) */
  @media (max-width: 480px) {
    :root {
      --spacing-lg: 3rem;
      --spacing-xl: 4rem;
    }

    .container {
      padding: 0 var(--spacing-sm);
    }

    .hero-title {
      font-size: 2rem;
    }

    .hero-subtitle {
      font-size: 1rem;
    }

    .cta-button,
    .cta-button-alt {
      padding: 0.875rem 1.75rem;
      font-size: 1rem;
      min-height: 44px;
    }

    .section-title {
      font-size: 1.75rem;
    }

    .achievement-item {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .achievement-number {
      font-size: 3rem;
    }

    .service-card {
      padding: var(--spacing-md) var(--spacing-sm);
      min-height: auto;
    }

    .company-card {
      padding: var(--spacing-md) var(--spacing-sm);
    }

    .footer-logo-large img {
      height: 60px;
    }
  }

  /* Touch device improvements */
  @media (hover: none) and (pointer: coarse) {
    .nav-link,
    .cta-button,
    .cta-button-alt,
    .submit-button,
    .social-icon,
    .back-to-top,
    .lang-toggle,
    .hamburger,
    .lang-option {
      min-height: 44px;
      min-width: 44px;
    }

    .service-card,
    .company-card {
      cursor: pointer;
    }

    .service-card:active,
    .company-card:active {
      transform: scale(0.98);
    }
  }

  /* Fade animations */
  .fade-in-up:nth-child(3) {
    animation-delay: 0.6s;
  }
  /* ===================================
   COOKIE CONSENT BANNER
   =================================== */
  .cookie-consent {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: rgba(10, 22, 40, 0.98) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 2px solid var(--accent-orange);
    padding: var(--spacing-md) !important;
    z-index: 10000 !important;
    transform: translateY(0) !important;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.4s ease,
      visibility 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    width: 100% !important;
    margin: 0 !important;
  }

  .cookie-consent.show {
    opacity: 1 !important;
    visibility: visible !important;
  }

  .cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
  }

  .cookie-content h3 {
    font-size: 1.25rem;
    color: var(--text-white);
    margin: 0;
    font-weight: 600;
  }

  .cookie-content p {
    flex: 1;
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    min-width: 250px;
  }

  .cookie-buttons {
    display: flex;
    gap: var(--spacing-sm);
  }

  .cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
  }

  .cookie-accept {
    background: linear-gradient(
      135deg,
      var(--accent-orange),
      var(--accent-amber)
    );
    color: var(--text-white);
  }

  .cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  }

  .cookie-decline {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .cookie-decline:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.3);
  }

  @media (max-width: 768px) {
    .cookie-content {
      flex-direction: column;
      text-align: center;
      gap: var(--spacing-sm);
    }

    .cookie-content h3,
    .cookie-content p {
      width: 100%;
    }

    .cookie-buttons {
      width: 100%;
      flex-direction: column;
    }

    .cookie-btn {
      width: 100%;
    }
  }
}

/* Hero Illustration Background */
.hero-illustration-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-illustration {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-vera-highlight {
  font-size: 1rem;
  line-height: 1.8;
  color: #94a3b8;
  max-width: 800px;
  margin: 1.5rem 0;
  font-weight: 400;
}

/* Service Features List */
.service-features-list {
  margin-top: 1rem;
  text-align: left;
}

.feature-subheading {
  font-size: 0.85rem;
  color: #94a3b8;
  margin: 0.5rem 0;
  line-height: 1.6;
}

/* Checkbox Wrapper for KVKK */
.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1rem 0;
}

.checkbox-wrapper input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #a5cc43;
}

.checkbox-wrapper label {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.6;
  cursor: pointer;
  --webkit-user-select: none;
}

.checkbox-wrapper input[type="checkbox"]:checked + label {
  color: #ffffff;
}

/* Language Flag */
.lang-flag {
  font-size: 1.2rem;
  margin-right: 0.25rem;
}

/* Flowchart SVG Section */
.flowchart-svg-section {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  padding: 1.5rem;
  background: transparent;
  border-radius: 20px;
}

.vera-illustration {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .flowchart-svg-section {
    padding: 1rem;
    margin-bottom: 2rem;
  }

  .vera-illustration {
    height: auto;
  }
}

@media (max-width: 480px) {
  .flowchart-svg-section {
    padding: 0.75rem;
  }

  .vera-illustration {
    height: auto;
  }
}

/* KVKK Link Styling */
.kvkk-link {
  color: #00d4ff;
  text-decoration: none;
  font-weight: 500;
  margin-left: 0.25rem;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.kvkk-link:hover {
  color: #a5cc43;
  border-bottom-color: #a5cc43;
}

.kvkk-link:focus {
  outline: 2px solid #00d4ff;
  outline-offset: 2px;
  border-radius: 2px;
}

.checkbox-wrapper label {
  display: inline;
}

/* Fix Navigation Menu Overlap */
.nav-menu {
  margin: 0 auto;
  gap: 1.25rem;
}

.nav-link {
  padding: 0.5rem 0.75rem;
}

.nav-menu li:first-child a {
  white-space: nowrap;
}

/* Language Selector - Flag Only */
.lang-flag-only {
  font-size: 0.875rem;
  line-height: 1;
  display: inline-block;
  font-weight: 600;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  min-width: 60px;
}

.current-lang {
  display: none !important;
}

.lang-flag {
  display: none !important;
}

/* Responsive fixes */
@media (max-width: 968px) {
  .nav-menu {
    padding-right: 1rem;
  }
}

@media (max-width: 768px) {
  .nav-container {
    gap: 0.5rem;
  }

  .language-selector {
    margin-left: 0.5rem;
  }
}

/* VERA MineOps Description - Improved Styling */
.vera-description {
  max-width: 900px;
  margin: 2.5rem auto 3rem;
  padding: 0;
  background: transparent;
  --webkit-backdrop-filter: none;
  border-radius: 0;
  border: none;
  text-align: center;
}

.vera-integration-text {
  font-size: 1.3rem;
  line-height: 1.9;
  color: #ffffff;
  margin-bottom: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 0 2rem;
}

.highlighted-text {
}

.vera-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.vera-features-list li {
  font-size: 1rem;
  color: #e2e8f0;
  padding: 1.5rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.15) 0%,
    rgba(0, 212, 255, 0.05) 100%
  );
  border-radius: 12px;
  border: 1px solid rgba(0, 212, 255, 0.3);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-weight: 500;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.vera-features-list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #00d4ff 0%, #0066ff 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vera-features-list li:hover::before {
  opacity: 1;
}

.vera-features-list li:hover {
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.25) 0%,
    rgba(0, 212, 255, 0.1) 100%
  );
  border-color: rgba(0, 212, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 212, 255, 0.2);
}

.vera-features-list li:last-child::before {
  background: linear-gradient(180deg, #10b981 0%, #059669 100%);
}

.vera-features-list li:last-child {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.15) 0%,
    rgba(16, 185, 129, 0.05) 100%
  );
  border-color: rgba(16, 185, 129, 0.3);
}

.vera-features-list li:last-child:hover {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.25) 0%,
    rgba(16, 185, 129, 0.1) 100%
  );
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
}

@media (max-width: 768px) {
  .vera-description {
    padding: 0 1rem;
    margin: 2rem auto;
  }

  .vera-integration-text {
    font-size: 1.1rem;
    padding: 0 1rem;
    margin-bottom: 2rem;
  }

  .vera-features-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .vera-features-list li {
    font-size: 0.95rem;
    padding: 1.2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .vera-integration-text {
    font-size: 1rem;
  }

  .vera-features-list li {
    font-size: 0.9rem;
    padding: 1rem 1.2rem;
  }
}

/* VERA New Layout Styles */

/* Key Features Grid (inside Projects) */
.vera-content-wrapper {
  margin-top: 3rem;
  padding: 0 1rem;
}

.vera-intro-text {
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: center;
}

.vera-main-desc {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #e2e8f0;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

.vera-key-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.vera-key-feature-card {
  background: rgba(15, 23, 42, 0.85);
  --webkit-backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 212, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.vera-key-feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.4);
  background: rgba(15, 23, 42, 0.95);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.15);
}

.vera-key-feature-card h4 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-family: var(--font-heading);
}

.vera-key-feature-card p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* VERA Details Section (Replaces Gallery) */
.vera-details-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  position: relative;
  overflow: hidden;
}

.subsection-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #fff;
  font-family: var(--font-heading);
}

.subsection-title.center {
  text-align: center;
}

.vera-modules-container {
  margin-bottom: 5rem;
}

.vera-modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.vera-module-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

.vera-module-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #a5cc43;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vera-module-card:hover {
  transform: translateY(-5px);
  background: rgba(30, 41, 59, 0.4);
  border-color: rgba(0, 212, 255, 0.2);
}

.vera-module-card:hover::before {
  opacity: 1;
}

.module-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
  background: transparent;
  border-radius: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.module-icon::before {
  display: none;
}

.module-icon svg {
  width: 45px;
  height: 45px;
  filter: none;
  transition: all 0.3s ease;
}

.vera-module-card:hover .module-icon {
  transform: scale(1.1);
  background: transparent;
}

.vera-module-card:hover .module-icon::before {
  display: none;
}

.vera-module-card:hover .module-icon svg {
  filter: none;
  transform: scale(1.05);
}

.vera-module-card h4 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  text-align: center;
}

.vera-module-card p {
  color: #94a3b8;
  line-height: 1.7;
  text-align: center;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

/* Why VERA & Benefits Grid */
.vera-info-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

.vera-why-list {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

.vera-why-list li {
  margin-bottom: 2rem;
  padding-left: 2rem;
  border-left: 3px solid #a5cc43;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

.vera-why-list strong {
  display: block;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.vera-why-list span {
  color: #94a3b8;
  line-height: 1.6;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

.vera-benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

.vera-benefits-list li {
  background: transparent;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

.vera-benefits-list li::before {
  content: "✓";
  margin-right: 1rem;
  font-weight: bold;
}

@media (max-width: 968px) {
  .vera-info-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
/* Updates for VERA MineOps section */

/* Reduce margin of flowchart-svg-section */
.flowchart-svg-section {
  margin-bottom: 1rem !important; /* Force override for now, cleaner approach is to edit the file directly but this works for appending if valid CSS */
  padding-bottom: 1rem !important;
}

/* Gradient Title Style */
.vera-gradient-title {
  background: linear-gradient(135deg, #ffffff 0%, #a5cc43 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #a5cc43; /* Fallback */
  margin-top: 0 !important;
  margin-bottom: 1rem !important;
  font-weight: 800; /* Match hero title weight */
  letter-spacing: -1px;
}

/* Module Icon SVG styling */
.module-icon svg {
  width: 28px;
  height: 28px;
  stroke: #a5cc43; /* Orange theme */
}

/* ===================================
   VERA MINEOPS DEDICATED PAGE
   =================================== */

/* Hero Section */
.vera-hero {
  padding: 10rem 0 6rem;
  background: linear-gradient(135deg, #0a1628 0%, #1e293b 100%);
  min-height: 100vh;
}

.vera-main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

/* Illustration Container */
.vera-illustration-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 120px;
}

.vera-main-illustration {
  width: 100%;
  max-width: 500px;
  height: auto;
  filter: drop-shadow(0 10px 40px rgba(94, 141, 102, 0.2));
}

/* Features Grid */
.vera-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.vera-feature-box {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(155, 245, 120, 0.15);
  transition: all 0.3s ease;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

.vera-feature-box:hover {
  transform: translateY(-5px);
  border-color: rgba(155, 245, 120, 0.4);
  background: rgba(15, 23, 42, 0.8);
  box-shadow: 0 10px 30px rgba(155, 245, 120, 0.2);
}

.vera-feature-box h3 {
  color: #9bf578;
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
  font-family: var(--font-heading);
  font-weight: 600;
}

.vera-feature-box p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

/* Details Section */
.vera-details {
  padding: 6rem 0;
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
}

.vera-intro-section {
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: center;
}

.vera-main-desc {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #cbd5e1;
}

.vera-integration-note {
  text-align: center;
  padding: 3rem 0;
}

.vera-integration-text.center {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
  .vera-main-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .vera-illustration-container {
    position: static;
    order: -1;
  }

  .vera-main-illustration {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .vera-hero {
    padding: 8rem 0 4rem;
  }

  .vera-main-content {
    gap: 2rem;
  }

  .vera-main-illustration {
    max-width: 300px;
  }

  .vera-features-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .vera-feature-box {
    padding: 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .vera-feature-box h3 {
    font-size: 1.05rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
  }

  .vera-feature-box p {
    font-size: 0.9rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
  }

  .vera-main-desc {
    font-size: 1rem;
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
  }

  .vera-integration-text.center {
    font-size: 1.25rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
  }

  .vera-info-grid {
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }

  .vera-module-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

/* ===================================
   MOBILE RESPONSIVE IMPROVEMENTS
   Reduces excessive spacing on mobile devices
   =================================== */

/* Tablet and below - reduce spacing */
@media (max-width: 1024px) {
  :root {
    --spacing-xl: 4rem; /* Reduced from 6rem */
    --spacing-lg: 3rem; /* Reduced from 4rem */
  }
}

/* Mobile devices - further reduce spacing */
@media (max-width: 768px) {
  :root {
    --spacing-xl: 3rem; /* Reduced from 6rem */
    --spacing-lg: 2rem; /* Reduced from 4rem */
    --spacing-md: 1.5rem; /* Reduced from 2rem */
  }

  /* Hero Section */
  .hero {
    min-height: 100vh;
  }

  .hero-content {
    padding: 3rem 1.5rem;
  }

  .hero-title {
    margin-bottom: 1.5rem;
  }

  .hero-subtitle {
    margin-bottom: 2rem;
  }

  /* Section padding adjustments */
  .about,
  .mission-vision,
  .services,
  .technology,
  .projects,
  .contact,
  .vera-details {
    padding: 3rem 0 !important;
  }

  /* Container padding */
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  /* Mission Vision Grid */
  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mission-card,
  .vision-card {
    padding: 2rem;
  }

  /* Service Cards */
  .service-card {
    padding: 1.5rem;
    min-height: 280px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }

  /* Project Cards */
  .projects-flowchart {
    margin: 2rem auto;
    padding: 2rem 0;
  }

  /* Contact Section */
  .contact-content {
    gap: 2rem;
  }

  /* Footer */
  .footer {
    padding: 2rem 0 1rem;
  }

  .footer-content {
    gap: 2rem;
  }

  /* Toast Container */
  .toast-container {
    top: 80px;
    right: 10px;
    left: 10px;
    max-width: 100%;
  }

  /* Cookie Consent */
  #cookie-consent {
    padding: 1rem !important;
  }
}

/* Small mobile devices - minimal spacing */
@media (max-width: 480px) {
  :root {
    --spacing-xl: 2.5rem;
    --spacing-lg: 1.5rem;
    --spacing-md: 1rem;
  }

  .hero-content {
    padding: 2rem 1rem;
  }

  .about,
  .mission-vision,
  .services,
  .technology,
  .projects,
  .contact,
  .vera-details {
    padding: 2.5rem 0 !important;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 100%;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
  }

  .section-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    width: 100%;
    max-width: 100%;
    word-break: break-word;
    box-sizing: border-box;
    padding: 0;
  }

  .about,
  .about-grid,
  .about-content,
  .about-text {
    width: 100% !important;
    max-width: 100vw !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow: visible !important;
  }

  .about-text p {
    font-size: 1rem;
    width: 100%;
    max-width: calc(100vw - 2rem);
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    box-sizing: border-box;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .vera-info-grid,
  .vera-why-list,
  .vera-why-list li,
  .vera-why-list span,
  .vera-benefits-list,
  .vera-benefits-list li,
  .vera-feature-box,
  .vera-feature-box p,
  .vera-module-card,
  .vera-module-card p,
  .vera-main-desc {
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
    box-sizing: border-box;
  }
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .mission-card,
  .vision-card {
    padding: 1.5rem;
  }

  .mv-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }

  .service-card {
    padding: 1.25rem;
    min-height: 260px;
  }

  .cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  /* Reduce flowchart spacing */
  .projects-flowchart {
    margin: 1.5rem auto;
    padding: 1.5rem 0;
  }

  .flowchart-main {
    margin-bottom: 2rem;
  }

  .flowchart-box {
    padding: 15px 25px;
  }

  .flowchart-box.main-box {
    padding: 20px 35px;
  }

  /* Form adjustments */
  .form-grid {
    gap: 1rem;
  }

  .form-group {
    margin-bottom: 1rem;
  }
}

/* Landscape mode on mobile - optimize for horizontal space */
@media (max-width: 896px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
  }

  .hero-content {
    padding: 2rem 1.5rem;
  }

  .about,
  .mission-vision,
  .services,
  .technology,
  .projects,
  .contact {
    padding: 2.5rem 0 !important;
  }
}
