/* CSS Variables */
:root {
  --primary: #64748b;
  --primary-foreground: #FFFFFF;
  --secondary: #3C4E67;
  --secondary-foreground: #FFFFFF;
  --accent: #DC2828;
  --accent-foreground: #FFFFFF;
  --background: #FFFFFF;
  --foreground: #111827;
  --card: #FFFFFF;
  --card-foreground: #111827;
  --border: #E5E7EB;
  --input: #E5E7EB;
  --ring: #64748b;
  --muted: #F3F4F6;
  --muted-foreground: #6B7280;
  --font-family: 'Open Sans', sans-serif;
  --radius: 0.5rem;
}

/* Global Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--foreground);
  background: var(--background);
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
}

.hidden {
  display: none !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 1rem 0;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin: 0 0 1rem 0;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Utility Classes */
.text-primary { color: var(--primary); }
.text-muted { color: var(--muted-foreground); }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.mb-4 { margin-bottom: 1rem; }

/* Icons */
.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 20px; height: 20px; }
.icon-lg { width: 24px; height: 24px; }
.icon-xl { width: 32px; height: 32px; }

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--muted);
  border-radius: var(--radius);
  box-shadow: 8px 8px 16px #d1d1d1, -8px -8px 16px #ffffff;
  margin-bottom: 1rem;
}

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* Buttons */
.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  border-bottom: 3px solid var(--secondary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  border-bottom-width: 5px;
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  border-bottom: 3px solid var(--primary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--primary-foreground);
  border-bottom-width: 5px;
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-hero {
  background: var(--accent);
  color: var(--accent-foreground);
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  border-bottom: 3px solid #b91c1c;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-hero:hover {
  border-bottom-width: 5px;
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-hero-outline {
  background: transparent;
  color: var(--primary-foreground);
  border: 2px solid var(--primary-foreground);
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  border-bottom: 3px solid var(--primary-foreground);
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-hero-outline:hover {
  background: var(--primary-foreground);
  color: var(--primary);
  border-bottom-width: 5px;
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-cta {
  background: var(--primary-foreground);
  color: var(--primary);
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  border-bottom: 3px solid rgba(255,255,255,0.3);
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  border-bottom-width: 5px;
  transform: translateY(-1px);
  text-decoration: none;
}

/* Forms */
.form-input {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  background: var(--background);
  color: var(--foreground);
  transition: border-color 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(100, 116, 139, 0.1);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--foreground);
}

.success-message {
  background: #dcfce7;
  border: 1px solid #16a34a;
  color: #166534;
  padding: 1.5rem;
  border-radius: var(--radius);
  margin-top: 1rem;
}

.success-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.success-content h3 {
  margin: 0;
  color: #166534;
}

.success-content p {
  margin: 0.5rem 0 0 0;
  color: #166534;
}

/* Topbar */
.topbar {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-contact {
  display: flex;
  gap: 2rem;
}

.topbar-contact span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.topbar-contact a {
  color: var(--primary-foreground);
}

.topbar-hours span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .topbar-content {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .topbar-contact {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Navigation */
.navbar {
  background: var(--background);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  position: relative;
  z-index: 1000;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand .logo-img {
  height: 40px;
  max-width: 200px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--foreground);
  font-weight: 500;
  border-bottom: 3px solid transparent;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  text-decoration: none;
}

.hitech-bd_mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hitech-bd_mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--background);
  border-top: 1px solid var(--border);
  padding: 1rem 0;
}

.hitech-bd_mobile-menu a {
  padding: 0.75rem 0;
  color: var(--foreground);
  border-bottom: 1px solid var(--border);
}

.hitech-bd_mobile-menu a:hover,
.hitech-bd_mobile-menu a.active {
  color: var(--primary);
  text-decoration: none;
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  
  .hitech-bd_mobile-menu-toggle {
    display: block;
  }
  
  .hitech-bd_mobile-menu {
    display: flex;
  }
  
  .hitech-bd_mobile-menu.hidden {
    display: none;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--primary-foreground);
  padding: 7rem 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary-foreground);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--primary-foreground);
  .9;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  max-width: 100%;
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-actions {
    flex-direction: column;
  }
}

/* Page Header */
.page-header {
  background: var(--muted);
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

.page-header-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-header h1 {
  color: var(--foreground);
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.last-updated {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-style: italic;
}

/* Sections */
section {
  padding: 7rem 0;
  border-bottom: 1px solid var(--border);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem auto;
}

.section-header h2 {
  color: var(--foreground);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--primary-foreground);
  text-align: center;
}

.cta-content h2 {
  color: var(--primary-foreground);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: var(--primary-foreground);
  .9;
}

/* Team Preview */
.team-preview {
  background: var(--background);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  text-align: center;
  padding: 2rem;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 8px 8px 16px #d1d1d1, -8px -8px 16px #ffffff;
}

.team-icon {
  margin-bottom: 1.5rem;
}

.team-card h3 {
  color: var(--card-foreground);
  margin-bottom: 1rem;
}

.team-card p {
  color: var(--muted-foreground);
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* Partner Logos */
.partner-logos {
  background: var(--muted);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.partner-item {
  text-align: center;
  padding: 1.5rem;
}

.partner-icon {
  margin-bottom: 1rem;
}

.partner-item p {
  font-weight: 500;
  color: var(--foreground);
}

@media (max-width: 768px) {
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* FAQ Preview */
.faq-preview {
  background: var(--background);
}

.faq-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.faq-text h2 {
  color: var(--foreground);
  margin-bottom: 1rem;
}

.faq-text p {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.faq-highlights {
  margin-bottom: 2rem;
}

.faq-item {
  margin-bottom: 1.5rem;
}

.faq-item h4 {
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.faq-item p {
  color: var(--muted-foreground);
}

.faq-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 8px 8px 16px #d1d1d1, -8px -8px 16px #ffffff;
}

@media (max-width: 768px) {
  .faq-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Stats Counter */
.stats-counter {
  background: var(--muted);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-weight: 500;
  color: var(--foreground);
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Features */
.features {
  background: var(--background);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 8px 8px 16px #d1d1d1, -8px -8px 16px #ffffff;
}

.feature-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-content {
  padding: 2rem;
}

.feature-content h3 {
  color: var(--card-foreground);
  margin-bottom: 1rem;
}

.feature-content p {
  color: var(--muted-foreground);
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* Process Steps */
.process-steps {
  background: var(--muted);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  color: var(--foreground);
  margin-bottom: 1rem;
}

.step-content p {
  color: var(--muted-foreground);
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* Services Page */
.services-overview {
  background: var(--background);
}

.services-accordion {
  max-width: 1000px;
  margin: 0 auto;
}

.service-accordion-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 8px 8px 16px #d1d1d1, -8px -8px 16px #ffffff;
}

.service-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.service-accordion-header:hover {
  background: var(--muted);
}

.service-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-info h3 {
  color: var(--card-foreground);
  margin: 0;
}

.service-info p {
  color: var(--muted-foreground);
  margin: 0.25rem 0 0 0;
  font-size: 0.875rem;
}

.accordion-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  transition: transform 0.3s ease;
}

.service-accordion-item.active .accordion-toggle {
  transform: rotate(180deg);
}

.service-accordion-content {
  display: none;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.service-accordion-item.active .service-accordion-content {
  display: block;
}

.service-details {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: start;
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
}

.service-text h4 {
  color: var(--card-foreground);
  margin-bottom: 1rem;
}

.service-text p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--card-foreground);
}

.service-pricing {
  background: var(--muted);
  padding: 1rem;
  border-radius: var(--radius);
}

.pricing-note {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

@media (max-width: 768px) {
  .service-details {
    grid-template-columns: 1fr;
  }
}

/* Service Categories */
.service-categories {
  background: var(--muted);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.category-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 8px 8px 16px #d1d1d1, -8px -8px 16px #ffffff;
}

.category-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.category-content {
  padding: 2rem;
}

.category-content h3 {
  color: var(--card-foreground);
  margin-bottom: 1rem;
}

.category-content p {
  color: var(--muted-foreground);
}

@media (max-width: 768px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
}

/* About Page */
.story-timeline {
  background: var(--background);
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  margin-bottom: 4rem;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.timeline-year {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  white-space: nowrap;
}

.timeline-content {
  width: 45%;
  padding: 2rem;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 8px 8px 16px #d1d1d1, -8px -8px 16px #ffffff;
  position: relative;
}

.timeline-content h3 {
  color: var(--card-foreground);
  margin-bottom: 1rem;
}

.timeline-content p {
  color: var(--muted-foreground);
}

.timeline-icon {
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    flex-direction: column !important;
  }
  
  .timeline-marker {
    left: 20px;
  }
  
  .timeline-content {
    width: 100%;
    margin-left: 60px;
  }
}

/* Mission and Values */
.mission-values {
  background: var(--muted);
}

.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mission-text h2 {
  color: var(--foreground);
  margin-bottom: 1rem;
}

.mission-statement {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  font-style: italic;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.value-item h4 {
  color: var(--foreground);
  margin: 0 0 0.5rem 0;
}

.value-item p {
  color: var(--muted-foreground);
  margin: 0;
  font-size: 0.875rem;
}

.mission-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 8px 8px 16px #d1d1d1, -8px -8px 16px #ffffff;
}

@media (max-width: 768px) {
  .mission-content {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* Why Choose Us */
.why-choose-us {
  background: var(--background);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.advantage-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 8px 8px 16px #d1d1d1, -8px -8px 16px #ffffff;
}

.advantage-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.advantage-content {
  padding: 2rem;
}

.advantage-content h3 {
  color: var(--card-foreground);
  margin-bottom: 1rem;
}

.advantage-content p {
  color: var(--muted-foreground);
}

@media (max-width: 768px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }
}

/* Team Section */
.team-section {
  background: var(--muted);
}

.team-overview {
  max-width: 1000px;
  margin: 0 auto;
}

.team-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 4rem;
}

.team-stat {
  text-align: center;
}

.team-roles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.role-card {
  text-align: center;
  padding: 2rem;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 8px 8px 16px #d1d1d1, -8px -8px 16px #ffffff;
}

.role-card h3 {
  color: var(--card-foreground);
  margin-bottom: 1rem;
}

.role-card p {
  color: var(--muted-foreground);
}

@media (max-width: 768px) {
  .team-stats {
    flex-direction: column;
    gap: 2rem;
  }
  
  .team-roles {
    grid-template-columns: 1fr;
  }
}

/* Achievements */
.achievements {
  background: var(--background);
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.achievement-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.achievement-content h3 {
  color: var(--foreground);
  margin-bottom: 1rem;
}

.achievement-content p {
  color: var(--muted-foreground);
}

@media (max-width: 768px) {
  .achievements-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact Page */
.contact-section {
  background: var(--background);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.hitech-bd_contact-form-container h2 {
  color: var(--foreground);
  margin-bottom: 1rem;
}

.hitech-bd_contact-form-container p {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.contact-info-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 8px 8px 16px #d1d1d1, -8px -8px 16px #ffffff;
}

.contact-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-card h3 {
  color: var(--card-foreground);
  margin: 0;
}

.contact-details p {
  margin-bottom: 0.5rem;
  color: var(--muted-foreground);
}

.map-placeholder {
  background: var(--muted);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  margin-top: 1rem;
}

.map-icon {
  margin-bottom: 1rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 8px 8px 16px #d1d1d1, -8px -8px 16px #ffffff;
}

.contact-method-info h4 {
  color: var(--card-foreground);
  margin: 0 0 0.25rem 0;
}

.contact-method-info p {
  margin: 0;
  color: var(--muted-foreground);
}

@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
  }
}

/* Additional Contact Information */
.additional-contact {
  background: var(--muted);
}

.additional-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.contact-info-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: 8px 8px 16px #d1d1d1, -8px -8px 16px #ffffff;
}

.contact-info-card h3 {
  color: var(--card-foreground);
  margin-bottom: 1.5rem;
}

.company-details p,
.specialised-contacts p,
.response-info p {
  margin-bottom: 0.5rem;
  color: var(--muted-foreground);
  text-align: left;
}

@media (max-width: 768px) {
  .additional-contact-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ Page */
.faq-section {
  background: var(--background);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 8px 8px 16px #d1d1d1, -8px -8px 16px #ffffff;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--muted);
}

.faq-question h3 {
  color: var(--card-foreground);
  margin: 0;
  font-size: 1.125rem;
}

.faq-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* Support Info */
.support-info {
  background: var(--muted);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.support-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: 8px 8px 16px #d1d1d1, -8px -8px 16px #ffffff;
}

.support-card h3 {
  color: var(--card-foreground);
  margin-bottom: 1rem;
}

.support-card p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.support-details p {
  margin-bottom: 0.5rem;
  text-align: left;
}

@media (max-width: 768px) {
  .support-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact CTA */
.contact-cta {
  background: var(--background);
  text-align: center;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Legal Content */
.legal-content {
  background: var(--background);
}

.legal-document {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.legal-document h2 {
  color: var(--foreground);
  margin: 3rem 0 1.5rem 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.legal-document h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-document h3 {
  color: var(--foreground);
  margin: 2rem 0 1rem 0;
}

.legal-document p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.legal-document ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.legal-document li {
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.contact-details {
  background: var(--muted);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin: 2rem 0;
}

.contact-details p {
  margin-bottom: 0.5rem;
}

/* Cookie Table */
.cookie-table-container {
  overflow-x: auto;
  margin: 2rem 0;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 8px 8px 16px #d1d1d1, -8px -8px 16px #ffffff;
}

.cookie-table th,
.cookie-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.cookie-table th {
  background: var(--muted);
  font-weight: 600;
  color: var(--foreground);
}

.cookie-table td {
  color: var(--muted-foreground);
}

.cookie-table tr:last-child td {
  border-bottom: none;
}

/* Cookie Consent */
.hitech-bd_cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  z-index: 9999;
  padding: 1rem 0;
}

.hitech-bd_cookie-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.hitech-bd_cookie-banner-text p {
  margin: 0;
  color: var(--card-foreground);
}

.hitech-bd_cookie-banner-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.hitech-bd_cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.hitech-bd_cookie-modal-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hitech-bd_cookie-modal-content {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.cookie-toggles {
  margin-bottom: 2rem;
}

.hitech-bd_cookie-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.hitech-bd_cookie-toggle-row:last-child {
  border-bottom: none;
}

.hitech-bd_cookie-modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .hitech-bd_cookie-banner-inner {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hitech-bd_cookie-banner-actions {
    width: 100%;
    justify-content: center;
  }
  
  .hitech-bd_cookie-modal-actions {
    flex-direction: column;
  }
}

/* Footer */
footer {
  background: #111827;
  color: #f9fafb;
  padding: 4rem 0 2rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: #f9fafb;
  margin-bottom: 1rem;
}

.footer-section p {
  color: #d1d5db;
  margin-bottom: 0.5rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #d1d5db;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #f9fafb;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid #374151;
}

.footer-legal p {
  color: #9ca3af;
  margin: 0;
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: #d1d5db;
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Animation Classes */
.animate-slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-in {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
  
  section {
    padding: 5rem 0;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .btn-primary,
  .btn-outline {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  section {
    padding: 2rem 0;
  }
  
  .hero-title {
    font-size: 1.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

/* === CLASS ALIAS FIXES (injected by engine) === */
.hero-image { /* alias for .hero-img */ }
.hero-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  max-width: 100%;
}
.hero-text { /* alias for .hero-content */ }
.hero-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* === BASELINE SAFETY CSS (injected by engine) === */

/* Ensure .hidden works consistently even with ID-specific overrides */
.hidden { display: none !important; }

/* Prevent content overflow breaking layout */
img, video, iframe { max-width: 100%; height: auto; }
* { box-sizing: border-box; }

/* Ensure container has responsive padding */
.container { width: 100%; max-width: 1200px; margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 1rem; }

/* Prevent flex/grid children from overflowing */
.grid-2, .grid-3, .grid-4 { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Responsive grid fallbacks */
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* Ensure forms don't break layout */
.form-input, input[type="text"], input[type="email"], input[type="tel"], textarea, select {
  width: 100%;
  max-width: 100%;
}

/* Success message styling */
.success-message {
  margin-top: 1rem;
  padding: 1rem;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  border-radius: 0.5rem;
  color: #065f46;
  text-align: center;
}

/* Stacking context for hero sections — prevents z-index:-1 children from going behind the page */
.hero, .hero-section, .page-header, .cta, .cta-section { isolation: isolate; position: relative; }

/* Desktop nav injected by engine — show on desktop, hide on mobile */
.nav-menu { display: flex; align-items: center; gap: 1.5rem; }
.nav-menu .nav-link { text-decoration: none; color: var(--foreground, #1f2937); font-weight: 500; font-size: 0.95rem; transition: color 0.2s; }
.nav-menu .nav-link:hover { color: var(--primary, #2563eb); }
@media (max-width: 768px) {
  .nav-menu { display: none !important; }
}

/* Fixed header body padding safety */
body { min-height: 100vh; }

/* Prevent long words breaking layout */
h1, h2, h3, h4, p, li, td, th { overflow-wrap: break-word; word-wrap: break-word; }

/* === END BASELINE SAFETY CSS === */

/* Cookie banner visibility rules */
#hitech-bd_cookie-banner.hidden, #cookie-consent-banner.hidden { display: none !important; }
#hitech-bd_cookie-banner:not(.hidden), #cookie-consent-banner:not(.hidden) { display: block !important; }
#hitech-bd_cookie-modal.hidden { display: none !important; }
.hidden { display: none !important; }
