.footer h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--white);
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
  text-transform: uppercase;
}.about-image {
  background: transparent;
  border-radius: var(--radius-lg);
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}/* ============================================
   TECHS-HD Tech Support - Main Stylesheet
   ============================================ */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0056b3;
  --primary-dark: #003d82;
  --primary-light: #e8f0fe;
  --accent: #ff6600;
  --accent-hover: #e55c00;
  --dark: #1a1a2e;
  --darker: #0f0f1a;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --white: #ffffff;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: all 0.3s ease;
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--gray-900);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

/* ============================================
   FULL-PAGE PARALLAX BACKGROUND (Clouds & Desktops)
   Subtle SVG parallax effect across all sections
   ============================================ */
.parallax-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/bg-pattern.svg');
  background-size: cover;
  background-position: center 0;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  opacity: 0.06;
  transition: opacity 0.3s ease;
}

/* Ensure all main content sits above the parallax background */
body {
  position: relative;
  z-index: 1;
}

/* All sections get a transparent background to show the parallax beneath */
.section {
  background: transparent !important;
}

/* Services section card backgrounds remain solid */
.services {
  background: transparent !important;
}

.about {
  background: transparent !important;
}

.contact {
  background: transparent !important;
}

/* Keep section content above the background */
.section .container,
.section > * {
  position: relative;
  z-index: 1;
}

/* Make service cards slightly more opaque for readability */
.service-card {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(222, 226, 230, 0.5);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.98) !important;
}

/* Contact form gets subtle glass effect */
.contact-form {
  background: rgba(248, 249, 250, 0.92) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(222, 226, 230, 0.5);
}

/* Contact info already dark, keep it solid */
.contact-info {
  background: var(--dark) !important;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}
a:hover {
  color: var(--primary-dark);
}
a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  line-height: 1.4;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-accent {
  background: var(--accent);
  color: var(--white);
}
.btn-accent:hover {
  background: var(--accent-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-lg {
  padding: 16px 36px;
  font-size: 1.1rem;
}

/* --- Section Common --- */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}
.section-header .divider {
  width: 60px;
  height: 4px;
  background: var(--accent);
  margin: 16px auto;
  border-radius: 2px;
}

/* ============================================
   PROMO BANNER
   ============================================ */
.promo-hero-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  background: #0056b3;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-size: 0.95rem;
}

.promo-hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-hero-text {
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 48px;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
}
.navbar .logo img {
  height: 58px;
  width: auto;
}
.navbar .logo span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-phone {
  color: var(--gray-600);
  font-weight: 500;
  font-size: 0.9rem;
  white-space: nowrap;
  display: none;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  transition: var(--transition);
}

/* Desktop: hide phone from top header completely */
@media (min-width: 769px) {
  .nav-phone,
  a.nav-phone,
  .nav-links a.nav-phone,
  .nav-actions a.nav-phone {
    display: none !important;
    visibility: hidden;
    width: 0;
    height: 0;
    overflow: hidden;
    position: absolute;
    pointer-events: none;
    opacity: 0;
  }
}
.nav-phone:hover {
  color: var(--primary);
}

.nav-links a {
  color: var(--gray-700);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 4px 0;
  text-transform: uppercase;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}
.nav-links a:hover {
  color: var(--primary);
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.nav-cta {
  padding: 8px 20px;
  font-size: 0.9rem;
  color: var(--white);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.mobile-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding: 188px 0 80px;
  background: linear-gradient(135deg, var(--primary-light) 0%, #f0f7ff 50%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,86,179,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-content h1 span {
  color: var(--primary);
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--gray-600);
  margin-bottom: 30px;
  max-width: 500px;
  text-transform: uppercase;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-illustration-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}
.hero-illustration-img:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,86,179,0.2);
}

.hero-illustration {
  width: 100%;
  max-width: 450px;
  height: 320px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white);
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-illustration .icon-big {
  font-size: 4rem;
  margin-bottom: 16px;
}

.hero-illustration h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.hero-illustration p {
  font-size: 0.95rem;
  opacity: 0.9;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.hero-stat {
  text-align: center;
}
.hero-stat .number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
}

/* Counter animation */
.hero-stat .number.counting {
  transition: none;
}

.hero-stat .number.counted {
  animation: countPulse 0.5s ease;
}

@keyframes countPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.hero-stat .label {
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 700px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 35px 30px;
  transition: var(--transition);
  cursor: default;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card .icon {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.service-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  background: var(--gray-100);
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image {
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image .about-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.about-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  white-space: nowrap;
}

.about-content p {
  color: var(--gray-600);
  margin-bottom: 16px;
  font-size: 1rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-700);
  font-size: 0.95rem;
}
.about-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  background: var(--white);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  padding: 40px;
  background: var(--dark);
  border-radius: var(--radius-lg);
  color: var(--white);
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-info p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-detail .cd-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-detail .cd-text {
  font-size: 0.95rem;
}
.contact-detail .cd-text strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 2px;
  color: var(--white);
}
.contact-detail .cd-text span {
  color: rgba(255,255,255,0.7);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form {
  padding: 40px;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
}

.contact-form h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font-primary);
  transition: var(--transition);
  background: var(--white);
  color: var(--gray-900);
  line-height: 1.5;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,86,179,0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* Make select match input styling */
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236c757d' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230056b3' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.form-error {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 4px;
}

/* Form success (green check mark confirmation) */
.form-success {
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.form-success .success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #28a745;
  color: #ffffff;
  font-size: 3.8rem;
  font-weight: bold;
  margin-bottom: 24px;
  animation: successPop 0.5s ease;
  line-height: 1;
}

@keyframes successPop {
  0% { transform: scale(0); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.form-success h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.form-success p {
  color: var(--gray-600);
  margin-bottom: 24px;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--darker);
  color: var(--white);
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-brand .logo img {
  height: 36px;
}
.footer-brand .logo span {
  color: var(--primary);
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  max-width: 300px;
  line-height: 1.7;
}

.footer h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--white);
}

.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content p {
    margin: 0 auto 30px;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-illustration {
    max-width: 100%;
    height: 260px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about .container {
    grid-template-columns: 1fr;
  }
  .about-image {
    order: -1;
    height: 250px;
  }
  .about-content {
    text-align: center;
  }
  .about-features {
    justify-items: center;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 50px 0;
  }

  .hero {
    padding: 158px 0 50px;
  }
  .hero-content h1 {
    font-size: 2rem;
  }

  .navbar .container {
    justify-content: space-between;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--gray-200);
  }
  .nav-links.active {
    display: flex;
  }
  .mobile-toggle {
    display: flex;
    position: absolute;
    right: 20px;
  }
  .nav-links .nav-actions {
    flex-direction: column;
    width: 100%;
  }
  .nav-links a.nav-cta {
    width: 100%;
    justify-content: center;
  }
  .nav-links a.nav-phone {
    width: 100%;
    justify-content: center;
    padding: 10px 20px;
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 500;
    text-align: center;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .nav-links a.nav-phone:hover {
    color: var(--primary);
  }

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

  .about-features {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand .logo {
    justify-content: center;
  }
  .footer-brand p {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .about-content h2 {
    font-size: 1.8rem;
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .navbar .logo img {
    height: 60px;
  }
  .hero-content h1 {
    font-size: 1.6rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .section-header h2 {
    font-size: 1.6rem;
  }
  .about-content h2 {
    font-size: 1.6rem;
    white-space: normal;
  }
}

/* ============================================
   ADA ACCESSIBILITY WIDGET
   ============================================ */
.ada-widget {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.ada-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #0056b3;
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 86, 179, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 2;
}

.ada-toggle:hover {
  background: #003d82;
  transform: scale(1.06);
  box-shadow: 0 6px 24px rgba(0, 86, 179, 0.5);
}

.ada-toggle:focus-visible {
  outline: 3px solid #ff6600;
  outline-offset: 3px;
}

/* Panel */
.ada-panel {
  position: absolute;
  bottom: 66px;
  left: 0;
  width: 280px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.96);
  transform-origin: bottom left;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.ada-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.ada-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px 12px;
  border-bottom: 1px solid #e9ecef;
}

.ada-panel-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
}

.ada-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #6c757d;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
  transition: color 0.2s;
}

.ada-close:hover {
  color: #212529;
}

.ada-close:focus-visible {
  outline: 2px solid #0056b3;
  outline-offset: 2px;
  border-radius: 4px;
}

.ada-panel-body {
  padding: 12px 18px 18px;
}

.ada-group {
  margin-bottom: 14px;
}

.ada-group:last-of-type {
  margin-bottom: 16px;
}

.ada-group-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.ada-btn-group {
  display: flex;
  gap: 8px;
}

.ada-btn-group .ada-option {
  flex: 1;
  padding: 8px 0;
  font-size: 1rem;
  font-weight: 700;
  border: 1.5px solid #dee2e6;
  border-radius: 8px;
  background: #f8f9fa;
  color: #212529;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.ada-btn-group .ada-option:hover {
  background: #e8f0fe;
  border-color: #0056b3;
  color: #0056b3;
}

.ada-btn-group .ada-option:focus-visible {
  outline: 2px solid #0056b3;
  outline-offset: 2px;
}

.ada-btn-group .ada-option.active {
  background: #0056b3;
  border-color: #0056b3;
  color: #fff;
}

.ada-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.ada-option-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 6px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1.5px solid #dee2e6;
  border-radius: 8px;
  background: #f8f9fa;
  color: #212529;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  line-height: 1.2;
}

.ada-option-icon svg {
  display: block;
  flex-shrink: 0;
}

.ada-option-icon:hover {
  background: #e8f0fe;
  border-color: #0056b3;
  color: #0056b3;
}

.ada-option-icon:focus-visible {
  outline: 2px solid #0056b3;
  outline-offset: 2px;
}

.ada-option-icon.active {
  background: #0056b3;
  border-color: #0056b3;
  color: #fff;
}

.ada-reset {
  width: 100%;
  padding: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1.5px solid #dee2e6;
  border-radius: 8px;
  background: #fff;
  color: #6c757d;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.ada-reset:hover {
  background: #f8f9fa;
  border-color: #adb5bd;
  color: #212529;
}

.ada-reset:focus-visible {
  outline: 2px solid #0056b3;
  outline-offset: 2px;
}

/* ============================================
   ADA APPLIED STYLES
   ============================================ */

/* Increase font size */
body.ada-font-large {
  font-size: 20px !important;
}

body.ada-font-xlarge {
  font-size: 24px !important;
}

/* High contrast */
body.ada-high-contrast {
  filter: contrast(1.5) brightness(1.05);
  -webkit-filter: contrast(1.5) brightness(1.05);
}

body.ada-high-contrast .navbar,
body.ada-high-contrast .footer,
body.ada-high-contrast .contact-info {
  background: #000 !important;
}

body.ada-high-contrast .btn {
  border: 2px solid #fff;
}

/* Grayscale */
body.ada-grayscale {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}

/* Invert colors */
body.ada-invert-colors {
  filter: invert(90%) hue-rotate(180deg);
  -webkit-filter: invert(90%) hue-rotate(180deg);
}

body.ada-invert-colors img,
body.ada-invert-colors svg,
body.ada-invert-colors video {
  filter: invert(100%) hue-rotate(180deg);
  -webkit-filter: invert(100%) hue-rotate(180deg);
}

/* Light background */
body.ada-light-background {
  background: #f0f4ff !important;
}

body.ada-light-background .section {
  background: transparent !important;
}

body.ada-light-background .service-card,
body.ada-light-background .contact-form {
  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* Underline links */
body.ada-underline-links a {
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

body.ada-underline-links a:hover {
  text-decoration-thickness: 2px;
}

/* Readable font */
body.ada-readable-font {
  font-family: 'Open Dyslexic', 'Comic Sans MS', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
  letter-spacing: 0.035em;
  word-spacing: 0.05em;
  line-height: 1.8 !important;
}

/* Responsive */
@media (max-width: 768px) {
  .ada-widget {
    bottom: 16px;
    left: 16px;
  }

  .ada-toggle {
    width: 48px;
    height: 48px;
  }

  .ada-panel {
    bottom: 60px;
    left: 0;
    width: calc(100vw - 32px);
    max-width: 320px;
  }

  .ada-panel-body {
    padding: 10px 14px 14px;
  }

  .ada-btn-group .ada-option {
    padding: 12px 0;
    font-size: 1.05rem;
  }

  .ada-option-icon {
    padding: 14px 6px;
    font-size: 0.8rem;
  }

  .ada-option-icon svg {
    width: 24px;
    height: 24px;
  }

  .ada-reset {
    padding: 12px;
    font-size: 0.9rem;
  }

  .ada-group {
    margin-bottom: 16px;
  }
}

@media (max-width: 480px) {
  .ada-widget {
    bottom: 12px;
    left: 12px;
  }

  .ada-toggle {
    width: 44px;
    height: 44px;
  }

  .ada-panel {
    bottom: 56px;
    width: calc(100vw - 24px);
    max-width: 300px;
  }

  .ada-grid {
    gap: 6px;
  }

  .ada-option-icon {
    padding: 12px 4px;
    font-size: 0.75rem;
  }

  .ada-option-icon svg {
    width: 22px;
    height: 22px;
  }

  .ada-panel-body {
    padding: 8px 12px 12px;
  }

  .ada-close {
    font-size: 1.8rem;
    padding: 2px 6px;
  }
}
