/* CSS Variables */
:root {
  --primary: #000000;
  --primary-foreground: #FFFFFF;
  --secondary: #07B6D5;
  --secondary-foreground: #111827;
  --accent: #F59F0A;
  --accent-foreground: #111827;
  --background: #0F172A;
  --foreground: #F8FAFC;
  --card: #1E293B;
  --card-foreground: #F8FAFC;
  --border: #334155;
  --input: #334155;
  --ring: #000000;
  --muted: #1E293B;
  --muted-foreground: #94A3B8;
  --font-family: 'Open Sans', sans-serif;
  --radius: 1rem;
}

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

html {
  scroll-behavior: smooth;
}

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

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

/* Utility Classes */
.hidden {
  display: none !important;
}

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

.text-primary {
  color: var(--primary);
}

.text-muted {
  color: var(--muted-foreground);
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.text-lg {
  font-size: 1.125rem;
}

.text-sm {
  font-size: 0.875rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

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

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

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

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

/* Icon Styles */
.icon-sm {
  width: 1rem;
  height: 1rem;
}

.icon-md {
  width: 1.5rem;
  height: 1.5rem;
}

.icon-lg {
  width: 2rem;
  height: 2rem;
}

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

/* Button Styles */
.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  border: 2px solid var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
}

.btn-primary:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15), 0 8px 24px rgba(0,0,0,0.1);
}

.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 2px solid var(--border);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
}

.btn-outline:hover {
  background: var(--foreground);
  color: var(--background);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15), 0 8px 24px rgba(0,0,0,0.1);
}

.btn-outline-white {
  background: transparent;
  color: var(--primary-foreground);
  border: 2px solid var(--primary-foreground);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-white:hover {
  background: var(--primary-foreground);
  color: var(--primary);
}

/* Form Styles */
.form-input {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  color: var(--card-foreground);
  font-family: var(--font-family);
}

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

/* Success Message */
.success-message {
  background: var(--card);
  border: 2px solid var(--secondary);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  margin-top: 1rem;
}

.success-title {
  color: var(--card-foreground);
  margin: 1rem 0 0.5rem 0;
}

.success-text {
  color: var(--muted-foreground);
  margin: 0;
}

/* Animation Classes */
.animate-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Header Styles */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  padding: 1rem 0;
}

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

.nav-logo .logo-img {
  height: 2.5rem;
  width: auto;
}

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

.nav-link {
  color: var(--foreground);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--secondary);
}

.deltahubluxora_mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--foreground);
  font-size: 1.5rem;
  cursor: pointer;
}

.deltahubluxora_mobile-menu {
  background: var(--card);
  border-top: 1px solid var(--border);
}

.deltahubluxora_mobile-menu-inner {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  color: var(--card-foreground);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--secondary);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .deltahubluxora_mobile-menu-toggle {
    display: block;
  }
}

/* Hero Styles */
.hero {
  background: var(--background);
  color: var(--foreground);
  padding: 5rem 0;
}

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

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem 0;
  background: linear-gradient(135deg, var(--foreground), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin: 0 0 2rem 0;
}

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

.hero-image {
  position: relative;
}

.hero-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
}

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

.partner-content {
  text-align: center;
}

.partner-text {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

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

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
}

.partner-icon {
  width: 2rem;
  height: 2rem;
}

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

/* Section Styles */
section {
  padding: 5rem 0;
}

section:nth-child(even) {
  background: var(--muted);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: var(--foreground);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--muted-foreground);
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-description {
  font-size: 1.1rem;
  color: var(--muted-foreground);
  margin: 0 0 2rem 0;
}

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

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

.feature-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
}

.feature-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15), 0 16px 32px rgba(0,0,0,0.1);
}

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

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

.feature-content {
  padding: 1.5rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1rem 0 0.5rem 0;
  color: var(--card-foreground);
}

.feature-description {
  color: var(--muted-foreground);
  margin: 0;
}

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

/* Testimonials Section */
.testimonials {
  background: var(--muted);
  overflow: hidden;
}

.testimonial-slider {
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  
  transition: opacity 0.5s ease;
}

.testimonial-card.active {
  opacity: 1;
}

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

.testimonial-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.testimonial-bg {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.testimonial-text {
  position: relative;
}

.quote-icon {
  margin-bottom: 1rem;
  .3;
}

blockquote {
  font-size: 1.5rem;
  font-style: italic;
  margin: 0 0 2rem 0;
  color: var(--foreground);
  line-height: 1.4;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-name {
  font-weight: 600;
  margin: 0;
  color: var(--foreground);
}

.author-role {
  color: var(--muted-foreground);
  margin: 0;
  font-size: 0.9rem;
}

.testimonial-navigation {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonial-prev,
.testimonial-next {
  background: var(--card);
  color: var(--card-foreground);
  border: none;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: var(--primary);
  color: var(--primary-foreground);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .testimonial-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  blockquote {
    font-size: 1.25rem;
  }
}

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

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

.team-highlights {
  margin: 2rem 0;
}

.highlight-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.highlight-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: var(--foreground);
}

.highlight-description {
  color: var(--muted-foreground);
  margin: 0;
}

.team-image {
  position: relative;
}

.team-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

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

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

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

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1rem;
  .3;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1rem 0 0.5rem 0;
  color: var(--foreground);
}

.step-description {
  color: var(--muted-foreground);
  margin: 0;
}

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

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

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

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary);
  margin: 0;
}

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

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

/* CTA Section */
.cta {
  background: var(--primary);
  color: var(--primary-foreground);
  position: relative;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.cta-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(7,182,213,0.3));
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
}

.cta-description {
  font-size: 1.2rem;
  margin: 0 0 2rem 0;
  .9;
}

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

@media (max-width: 768px) {
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* Footer Styles */
.footer {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 3rem 0 1rem 0;
}

.footer a {
  color: var(--primary-foreground);
  .85;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer a:hover {
  opacity: 1;
}

.footer-content {
  margin-bottom: 2rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  height: 2.5rem;
  width: auto;
}

.footer-brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.footer-tagline {
  .8;
  margin: 0;
}

.footer-address {
  .7;
  font-size: 0.9rem;
}

.footer-address p {
  margin: 0.25rem 0;
}

.footer-links-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-links-title,
.footer-contact-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

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

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

.footer-contact-info p {
  margin: 0.5rem 0;
}

.footer-legal-links {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1rem;
  text-align: center;
}

.footer-copyright p {
  margin: 0;
  .7;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-links-section {
    grid-template-columns: 1fr;
  }
}

/* Page Header */
.page-header {
  background: var(--background);
  color: var(--foreground);
  padding: 3rem 0;
  text-align: center;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  background: linear-gradient(135deg, var(--foreground), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-subtitle {
  font-size: 1.2rem;
  color: var(--muted-foreground);
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.services-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.core-services {
  background: var(--background);
}

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

.service-item {
  background: var(--card);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.service-header:hover {
  background: rgba(255,255,255,0.05);
}

.service-icon {
  flex-shrink: 0;
}

.service-title-section {
  flex: 1;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
  color: var(--card-foreground);
}

.service-summary {
  color: var(--muted-foreground);
  margin: 0;
  font-size: 0.9rem;
}

.service-toggle {
  background: none;
  border: none;
  color: var(--card-foreground);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.service-toggle:hover {
  background: rgba(255,255,255,0.1);
}

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

.toggle-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.service-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.service-content.active {
  max-height: 1000px;
}

.service-details {
  padding: 0 1.5rem 1.5rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
}

.service-img {
  width: 100%;
  border-radius: var(--radius);
}

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

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

.feature-icon {
  width: 1rem;
  height: 1rem;
  color: var(--secondary);
  flex-shrink: 0;
}

.service-pricing {
  background: rgba(7, 182, 213, 0.1);
  padding: 1rem;
  border-radius: var(--radius);
  margin-top: 1rem;
}

.pricing-note {
  margin: 0;
  font-weight: 500;
  color: var(--secondary);
}

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

.additional-services {
  background: var(--muted);
}

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

.service-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
}

.service-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15), 0 16px 32px rgba(0,0,0,0.1);
}

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

.service-card-content {
  padding: 1.5rem;
}

.service-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1rem 0 0.5rem 0;
  color: var(--card-foreground);
}

.service-card-description {
  color: var(--muted-foreground);
  margin: 0 0 1rem 0;
}

.service-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card-features li {
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

/* Process Timeline */
.service-process {
  background: var(--background);
}

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

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

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-marker {
  width: 4rem;
  height: 4rem;
  background: var(--card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.timeline-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--secondary);
}

.timeline-content {
  flex: 1;
  padding-top: 0.5rem;
}

.timeline-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: var(--foreground);
}

.timeline-description {
  color: var(--muted-foreground);
  margin: 0;
}

@media (max-width: 768px) {
  .process-timeline::before {
    left: 1.5rem;
  }
  
  .timeline-marker {
    width: 3rem;
    height: 3rem;
  }
  
  .timeline-item {
    gap: 1rem;
  }
}

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

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

.story-paragraph {
  margin: 0 0 1.5rem 0;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.story-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.mission-values {
  background: var(--muted);
}

.mission-section {
  text-align: center;
  margin-bottom: 3rem;
}

.mission-text {
  font-size: 1.2rem;
  color: var(--muted-foreground);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.value-card {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
}

.value-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15), 0 16px 32px rgba(0,0,0,0.1);
}

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

.value-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: var(--card-foreground);
}

.value-description {
  color: var(--muted-foreground);
  margin: 0;
}

.team-section {
  background: var(--background);
}

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

.team-member {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
}

.team-member:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15), 0 16px 32px rgba(0,0,0,0.1);
}

.member-avatar {
  margin-bottom: 1rem;
}

.avatar-icon {
  width: 4rem;
  height: 4rem;
  color: var(--secondary);
}

.member-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
  color: var(--card-foreground);
}

.member-role {
  color: var(--secondary);
  margin: 0 0 1rem 0;
  font-weight: 500;
}

.member-description {
  color: var(--muted-foreground);
  margin: 0 0 1rem 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.member-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.expertise-tag {
  background: rgba(7, 182, 213, 0.2);
  color: var(--secondary);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.8rem;
  font-weight: 500;
}

.achievements {
  background: var(--muted);
}

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

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

.achievement-icon {
  flex-shrink: 0;
}

.achievement-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: var(--foreground);
}

.achievement-description {
  color: var(--muted-foreground);
  margin: 0;
}

.why-choose-us {
  background: var(--background);
}

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

.why-points {
  margin: 2rem 0;
}

.why-point {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.point-icon {
  flex-shrink: 0;
}

.point-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
  color: var(--foreground);
}

.point-description {
  color: var(--muted-foreground);
  margin: 0;
  font-size: 0.9rem;
}

.why-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
  .story-content,
  .why-content {
    grid-template-columns: 1fr;
  }
  
  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .achievements-grid {
    grid-template-columns: 1fr;
  }
}

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

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

.deltahubluxora_contact-form-section {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
}

.form-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: var(--card-foreground);
}

.form-description {
  color: var(--muted-foreground);
  margin: 0 0 2rem 0;
}

.deltahubluxora_contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

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

.form-submit {
  margin-top: 1rem;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.checkbox-text {
  font-size: 0.9rem;
  color: var(--muted-foreground);
}

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

.contact-info {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
}

.info-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: var(--card-foreground);
}

.info-description {
  color: var(--muted-foreground);
  margin: 0 0 2rem 0;
}

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

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

.contact-icon {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-label {
  font-weight: 600;
  margin: 0 0 0.25rem 0;
  color: var(--card-foreground);
}

.contact-value {
  color: var(--muted-foreground);
  margin: 0;
}

.additional-contacts {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
}

.additional-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: var(--card-foreground);
}

.additional-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.additional-item {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

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

.contact-cta {
  background: var(--muted);
}

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

.cta-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

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

/* Legal Pages */
.legal-page {
  background: var(--background);
  padding: 2rem 0;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--card);
  padding: 3rem;
  border-radius: var(--radius);
  color: var(--card-foreground);
}

.legal-header {
  text-align: center;
  margin-bottom: 3rem;
  border-bottom: 2px solid var(--border);
  padding-bottom: 2rem;
}

.legal-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: var(--card-foreground);
}

.legal-updated {
  color: var(--muted-foreground);
  font-style: italic;
  margin: 0;
}

.legal-section {
  margin-bottom: 2rem;
}

.legal-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: var(--card-foreground);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
}

.legal-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem 0;
  color: var(--card-foreground);
}

.legal-section p {
  margin: 0 0 1rem 0;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.legal-section ul {
  margin: 0 0 1rem 0;
  padding-left: 1.5rem;
  color: var(--muted-foreground);
}

.legal-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.contact-info {
  background: rgba(7, 182, 213, 0.1);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin: 1rem 0;
}

.contact-info p {
  margin: 0.5rem 0;
}

.contact-info strong {
  color: var(--card-foreground);
}

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

.cookie-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--background);
  border-radius: var(--radius);
  overflow: hidden;
}

.cookie-table th,
.cookie-table td {
  padding: 0.75rem;
  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);
}

@media (max-width: 768px) {
  .legal-content {
    padding: 2rem 1rem;
  }
  
  .legal-title {
    font-size: 2rem;
  }
  
  .cookie-table {
    font-size: 0.875rem;
  }
}

/* Cookie Consent Styles */
.deltahubluxora_cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  z-index: 1000;
  padding: 1rem 0;
}

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

.deltahubluxora_cookie-banner-text {
  flex: 1;
  min-width: 300px;
}

.deltahubluxora_cookie-banner-text p {
  margin: 0;
  color: var(--card-foreground);
  font-size: 0.9rem;
}

.deltahubluxora_cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.deltahubluxora_cookie-banner-actions button {
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.deltahubluxora_cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
}

.deltahubluxora_cookie-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.deltahubluxora_cookie-modal-content {
  position: relative;
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  color: var(--card-foreground);
}

.cookie-toggles {
  margin: 1rem 0 2rem 0;
}

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

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

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

.deltahubluxora_cookie-modal-actions button {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .deltahubluxora_cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  
  .deltahubluxora_cookie-banner-actions {
    justify-content: center;
  }
  
  .deltahubluxora_cookie-modal-content {
    padding: 1.5rem;
  }
  
  .deltahubluxora_cookie-modal-actions {
    justify-content: stretch;
    flex-direction: column;
  }
}

/* === CLASS ALIAS FIXES (injected by engine) === */
.hero-text { /* alias for .hero-content */ }
.hero-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  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 */
#deltahubluxora_cookie-banner.hidden, #cookie-consent-banner.hidden { display: none !important; }
#deltahubluxora_cookie-banner:not(.hidden), #cookie-consent-banner:not(.hidden) { display: block !important; }
#deltahubluxora_cookie-modal.hidden { display: none !important; }
.hidden { display: none !important; }
