/* ========================================
   DIVITECH - Static Website Styles
   Brand Colors: Spanish Yellow (#F4B414), Night Blue (#132B4F)
======================================== */

/* CSS Variables */
:root {
  --primary: #F4B414;
  --primary-foreground: #132B4F;
  --secondary: #132B4F;
  --secondary-foreground: #ffffff;
  --background: #ffffff;
  --foreground: #132B4F;
  --muted: #f1f5f9;
  --muted-foreground: #64748b;
  --border: #e2e8f0;
  --radius: 0.5rem;
  --font-sans: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-lg {
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
  }
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: #d9a012;
  border-color: #d9a012;
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-outline-light {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-whatsapp {
  background: #25D366;
  color: #ffffff;
  border-color: #25D366;
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1rem;
}

.btn-whatsapp:hover {
  background: #1fb855;
}

/* ========================================
   NAVBAR
======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--secondary);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Dropdown Menu */
.nav-dropdown-wrapper {
  position: relative;
}

.nav-dropdown-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s;
}

.nav-dropdown-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: var(--secondary);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 0.5rem;
  display: none;
  flex-direction: column;
  min-width: max-content;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 1001;
}

.nav-dropdown.active {
  display: flex;
}

.nav-dropdown a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.625rem 1rem;
  border-radius: calc(var(--radius) - 2px);
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-dropdown a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary);
}

.nav-dropdown-cta {
  background: var(--primary) !important;
  color: var(--primary-foreground) !important;
  margin-top: 0.25rem;
}

.nav-dropdown-cta:hover {
  background: #d9a012 !important;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.lang-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
}


/* ========================================
   HERO SECTION
======================================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--secondary);
  color: #ffffff;
  padding: 6rem 0 3rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    min-height: 100vh;
    padding: 8rem 0 4rem;
  }
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
}

.hero-shape-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: var(--primary);
  border-radius: 50%;
  filter: blur(80px);
  transform: translate(25%, -50%);
}

@media (min-width: 768px) {
  .hero-shape-1 {
    width: 800px;
    height: 800px;
  }
}

.hero-shape-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: #3b82f6;
  border-radius: 50%;
  filter: blur(80px);
  transform: translate(-25%, 50%);
}

@media (min-width: 768px) {
  .hero-shape-2 {
    width: 600px;
    height: 600px;
  }
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background: url('https://www.transparenttextures.com/patterns/cubes.png');
  opacity: 0.03;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.hero-text {
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-text {
    text-align: left;
  }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
}

@media (min-width: 768px) {
  .hero-tag {
    font-size: 0.875rem;
  }
}

.pulse-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  margin-top: 1.5rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

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

.hero-desc {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero-desc {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-desc {
    margin-left: 0;
    margin-right: 0;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-buttons {
    justify-content: flex-start;
  }
}

.hero-image {
  margin-top: 2rem;
}

@media (min-width: 1024px) {
  .hero-image {
    margin-top: 0;
  }
}

.hero-image img {
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.hero-image:hover img {
  transform: scale(1.02);
}

/* ========================================
   PROBLEMS SECTION
======================================== */
.problems {
  padding: 4rem 0;
  background: #f9fafb;
}

@media (min-width: 768px) {
  .problems {
    padding: 6rem 0;
  }
}

.section-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3rem;
}

@media (min-width: 768px) {
  .section-header {
    margin-bottom: 4rem;
  }
}

.section-header h2 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 2.25rem;
  }
}

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

@media (min-width: 768px) {
  .section-header p {
    font-size: 1.125rem;
  }
}

.problems-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .problems-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.problem-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 768px) {
  .problem-card {
    padding: 2rem;
  }
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.problem-icon {
  width: fit-content;
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: #f9fafb;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .problem-icon {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }
}

.icon-red { color: #ef4444; }
.icon-orange { color: #f97316; }
.icon-blue { color: #3b82f6; }

.problem-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
}

.problem-card p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .problem-card p {
    font-size: 1rem;
  }
}

/* ========================================
   SOLUTIONS SECTION
======================================== */
.solutions {
  padding: 4rem 0;
  background: var(--secondary);
  color: #ffffff;
}

@media (min-width: 768px) {
  .solutions {
    padding: 6rem 0;
  }
}

.section-header-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

@media (min-width: 768px) {
  .section-header-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
    margin-bottom: 4rem;
  }
}

.section-header-left {
  max-width: 36rem;
}

.section-label {
  display: block;
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-label {
    font-size: 1.125rem;
  }
}

.section-header-left h2 {
  color: #ffffff;
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-header-left h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }
}

.section-header-left p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

@media (min-width: 768px) {
  .section-header-left p {
    font-size: 1.125rem;
  }
}

.solutions-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .solutions-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.solution-card {
  position: relative;
  height: 18rem;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 768px) {
  .solution-card {
    height: 20rem;
  }
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.solution-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.solution-card:hover img {
  transform: scale(1.1);
}

.solution-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--gradient-color, rgba(37, 99, 235, 0.8)), rgba(19, 43, 79, 0.4), transparent);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.solution-card:hover::after {
  opacity: 0.6;
}

.solution-arrow {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  opacity: 0;
  transform: translateX(1rem);
  transition: all 0.3s ease;
  z-index: 10;
}

.solution-card:hover .solution-arrow {
  opacity: 1;
  transform: translateX(0);
}

.solution-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(19, 43, 79, 0.9), transparent);
  z-index: 10;
}

.solution-accent {
  width: 3rem;
  height: 0.25rem;
  background: var(--primary);
  margin-bottom: 1rem;
  transition: transform 0.5s ease;
  transform-origin: left;
}

.solution-card:hover .solution-accent {
  transform: scaleX(1.5);
}

.solution-content h3 {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

@media (min-width: 768px) {
  .solution-content h3 {
    font-size: 1.5rem;
  }
}

.solution-card:hover .solution-content h3 {
  color: var(--primary);
}

.solution-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  line-height: 1.6;
  transition: transform 0.5s ease;
}

@media (min-width: 768px) {
  .solution-content p {
    font-size: 1rem;
  }
}

.solution-card:hover .solution-content p {
  transform: translateX(0.25rem);
}

/* ========================================
   INDUSTRIES SECTION
======================================== */
.industries {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .industries {
    padding: 6rem 0;
  }
}

.section-label-sm {
  display: block;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .section-label-sm {
    font-size: 0.875rem;
  }
}

.industries-grid {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding: 0.5rem 1rem 2rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.industries-grid::-webkit-scrollbar {
  display: none;
}

@media (min-width: 768px) {
  .industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0;
    overflow-x: visible;
  }
}

@media (min-width: 1024px) {
  .industries-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  min-width: 160px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .industry-card {
    padding: 2rem;
    min-width: 0;
  }
}

.industry-card:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: rgba(244, 180, 20, 0.2);
}

.industry-icon {
  padding: 0.75rem;
  background: rgba(244, 180, 20, 0.1);
  color: var(--primary);
  border-radius: 50%;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .industry-icon {
    padding: 1rem;
    margin-bottom: 1rem;
  }
}

.industry-card h3 {
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}

@media (min-width: 768px) {
  .industry-card h3 {
    font-size: 1.125rem;
  }
}

/* ========================================
   PROCESS SECTION
======================================== */
.process {
  padding: 4rem 0;
  background: var(--secondary);
  color: #ffffff;
}

@media (min-width: 768px) {
  .process {
    padding: 6rem 0;
  }
}

.process-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.process-content {
  order: 2;
}

@media (min-width: 1024px) {
  .process-content {
    order: 1;
  }
}

.process-content h2 {
  color: #ffffff;
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .process-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
}

.process-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .process-desc {
    font-size: 1.125rem;
  }
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

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

.step-number {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(244, 180, 20, 0.2);
}

.step-content {
  padding-top: 0.5rem;
}

.step-content h4 {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .step-content h4 {
    font-size: 1.5rem;
  }
}

.step-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .step-content p {
    font-size: 1.125rem;
  }
}

.process-image {
  position: relative;
  order: 1;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .process-image {
    order: 2;
    margin-bottom: 0;
  }
}

.process-image img {
  border-radius: 1rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  position: relative;
  z-index: 10;
}

.process-image-border {
  display: none;
  position: absolute;
  top: -2.5rem;
  right: -2.5rem;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(244, 180, 20, 0.3);
  border-radius: 1rem;
}

@media (min-width: 640px) {
  .process-image-border {
    display: block;
  }
}

/* ========================================
   CASE STUDIES SECTION
======================================== */
.case-studies {
  padding: 4rem 0;
  background: #f9fafb;
}

@media (min-width: 768px) {
  .case-studies {
    padding: 6rem 0;
  }
}

.airport-showcase {
  background: var(--secondary);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 1024px) {
  .airport-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.airport-video {
  position: relative;
  aspect-ratio: 16/9;
}

.airport-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(19, 43, 79, 0.4), transparent);
  pointer-events: none;
}

.airport-content {
  padding: 2rem;
  color: #ffffff;
}

@media (min-width: 768px) {
  .airport-content {
    padding: 3rem;
  }
}

@media (min-width: 1024px) {
  .airport-content {
    padding: 4rem;
  }
}

.airport-content h3 {
  color: #ffffff;
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .airport-content h3 {
    font-size: 2.25rem;
  }
}

.airport-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .airport-content p {
    font-size: 1.25rem;
  }
}

.airport-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.badge {
  display: inline-flex;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

/* ========================================
   CONTACT SECTION
======================================== */
.contact {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .contact {
    padding: 6rem 0;
  }
}

.contact-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.contact-info {
  text-align: center;
}

@media (min-width: 1024px) {
  .contact-info {
    text-align: left;
  }
}

.contact-info h2 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .contact-info h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }
}

.contact-desc {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .contact-desc {
    font-size: 1.25rem;
  }
}

.contact-benefits {
  display: inline-flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

@media (min-width: 768px) {
  .contact-benefits {
    gap: 1.5rem;
  }
}

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

@media (min-width: 768px) {
  .benefit {
    gap: 1rem;
  }
}

.benefit-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(244, 180, 20, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .benefit-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.benefit-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

@media (min-width: 768px) {
  .benefit-icon svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.benefit span {
  font-size: 1rem;
}

@media (min-width: 768px) {
  .benefit span {
    font-size: 1.125rem;
  }
}

.contact-cta {
  margin-top: 2.5rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

@media (min-width: 1024px) {
  .contact-cta {
    margin-top: 0;
  }
}

.chatbot-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .chatbot-card {
    padding: 2rem;
  }
}

.chatbot-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.chatbot-caption {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  text-align: center;
  margin-bottom: 1rem;
}


@media (min-width: 768px) {
  .chatbot-card h3 {
    font-size: 1.5rem;
  }
}

.chatbot-frame {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.chatbot-frame iframe {
  width: 100%;
  height: 400px;
  border: none;
}

@media (min-width: 768px) {
  .chatbot-frame iframe {
    height: 450px;
  }
}

/* ========================================
   FOOTER
======================================== */
.footer {
  background: var(--secondary);
  color: #ffffff;
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .footer {
    padding: 4rem 0;
  }
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
  }
}

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

@media (min-width: 640px) {
  .footer-brand {
    grid-column: span 2;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .footer-brand {
    grid-column: span 1;
  }
}

.footer-logo {
  height: 2rem;
  width: auto;
  margin: 0 auto 1.5rem;
}

@media (min-width: 640px) {
  .footer-logo {
    margin: 0 0 1.5rem;
  }
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
}

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

@media (min-width: 640px) {
  .footer-links {
    text-align: left;
  }
}

.footer-links h4 {
  color: #ffffff;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links li {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    font-size: 0.875rem;
  }
}

.footer-legal {
  display: flex;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-legal {
    gap: 1.5rem;
  }
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: #ffffff;
}

/* ========================================
   UTILITIES
======================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
