/* Tailwind CSS Utilities - Static Version (No Build Required) */

/* Reset & Base */
*, ::before, ::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}

/* Links - Remove underlines */
a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
}

/* Container */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.container.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .container { max-width: 640px; }
}

@media (min-width: 768px) {
  .container { max-width: 768px; }
}

@media (min-width: 1024px) {
  .container { max-width: 1024px; }
}

@media (min-width: 1280px) {
  .container { max-width: 1280px; }
}

@media (min-width: 1536px) {
  .container { max-width: 1536px; }
}

/* Display */
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { 
  display: none !important; 
}

/* Navigation */
nav {
  display: flex;
  align-items: center;
}

nav.space-x-8 {
  display: flex;
}

nav.space-x-8 > * + * {
  margin-left: 2rem;
}

nav a {
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}

/* Flexbox */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }

/* Ensure flex containers work properly */
.flex.justify-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Grid */
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { 
  position: fixed;
  width: 100%;
}
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.left-0 { left: 0; }
.top-4 { top: 1rem; }
.right-4 { right: 1rem; }

/* Header specific */
header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
}

/* Z-index */
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.z-\[100\] { z-index: 100; }

/* Spacing */
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-4 { padding-top: 1rem; }
.pt-8 { padding-top: 2rem; }
.pt-24 { padding-top: 6rem; }
.pb-20 { padding-bottom: 5rem; }
.pb-0 { padding-bottom: 0; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.mr-4 { margin-right: 1rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

@media (min-width: 768px) {
  .md\:pt-32 { padding-top: 8rem; }
  .md\:pb-28 { padding-bottom: 7rem; }
}

/* Width & Height */
.w-full { width: 100%; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-24 { width: 6rem; }
.w-32 { width: 8rem; }
.w-auto { width: auto; }
.w-1\/2 { width: 50%; }
.h-full { height: 100%; }
.h-1 { height: 0.25rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }
.h-auto { height: auto; }

@media (min-width: 768px) {
  .md\:h-96 { height: 24rem; }
}

/* Text */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-white { color: rgb(255 255 255); }
.font-medium { font-weight: 500; }
.leading-tight { line-height: 1.25; }

@media (min-width: 768px) {
  .md\:text-left { text-align: left; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
}

@media (min-width: 1024px) {
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
}

/* Colors - Custom Vaya Colors */
.text-vaya-dark { color: #0a1929; }
.text-vaya-teal { color: #00d4aa; }
.text-vaya-gray { color: #718096; }
.bg-vaya-light { background-color: #F5F7FA; }
.bg-vaya-dark { background-color: #0a1929; }
.bg-vaya-blue { background-color: #1a365d; }
.bg-vaya-teal { background-color: #00d4aa; }
.bg-white { background-color: rgb(255 255 255); }

/* Opacity - when combined with bg-vaya-light */
.bg-vaya-light.bg-opacity-90 {
  background-color: rgba(245, 247, 250, 0.9) !important;
}
.text-white\/90 { color: rgba(255, 255, 255, 0.9); }
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }
.text-white\/70 { color: rgba(255, 255, 255, 0.7); }
.text-white\/60 { color: rgba(255, 255, 255, 0.6); }
.bg-vaya-dark\/80 { background-color: rgba(10, 25, 41, 0.8); }
.bg-vaya-dark\/70 { background-color: rgba(10, 25, 41, 0.7); }
.bg-vaya-dark\/60 { background-color: rgba(10, 25, 41, 0.6); }
.bg-vaya-teal\/10 { background-color: rgba(0, 212, 170, 0.1); }
.bg-vaya-blue\/10 { background-color: rgba(26, 54, 93, 0.1); }
.bg-white\/20 { background-color: rgba(255, 255, 255, 0.2); }
.bg-vaya-teal\/10 { background-color: rgba(0, 212, 170, 0.1); }

/* Borders */
.border-2 { border-width: 2px; }
.border-dashed { border-style: dashed; }
.border-white { border-color: rgb(255 255 255); }
.border-t { border-top-width: 1px; }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.2); }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

/* Shadows */
.shadow-sm { box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }

/* Transforms */
.transform { transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.rotate-12 { --tw-rotate: 12deg; transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(12deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.-rotate-12 { --tw-rotate: -12deg; transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(-12deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.-skew-x-12 { --tw-skew-x: -12deg; transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(-12deg) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }

/* Negative margins */
.-bottom-6 { bottom: -1.5rem; }
.-left-6 { left: -1.5rem; }
.-top-6 { top: -1.5rem; }
.-right-6 { right: -1.5rem; }
.-mt-1 { margin-top: -0.25rem; }
.-mt-2 { margin-top: -0.5rem; }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Object fit */
.object-cover { object-fit: cover; }

/* Backdrop */
.backdrop-blur-sm { backdrop-filter: blur(4px); }

/* Gradients */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.from-vaya-dark\/80 { --tw-gradient-from: rgba(10, 25, 41, 0.8); --tw-gradient-to: rgba(10, 25, 41, 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.via-vaya-dark\/70 { --tw-gradient-to: rgba(10, 25, 41, 0); --tw-gradient-stops: var(--tw-gradient-from), rgba(10, 25, 41, 0.7), var(--tw-gradient-to); }
.to-vaya-dark\/60 { --tw-gradient-to: rgba(10, 25, 41, 0.6); }
.from-vaya-teal\/10 { --tw-gradient-from: rgba(0, 212, 170, 0.1); --tw-gradient-to: rgba(0, 212, 170, 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-vaya-blue\/10 { --tw-gradient-to: rgba(26, 54, 93, 0.1); }
.from-vaya-dark\/70 { --tw-gradient-from: rgba(10, 25, 41, 0.7); --tw-gradient-to: rgba(10, 25, 41, 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.via-vaya-dark\/60 { --tw-gradient-to: rgba(10, 25, 41, 0); --tw-gradient-stops: var(--tw-gradient-from), rgba(10, 25, 41, 0.6), var(--tw-gradient-to); }
.to-vaya-dark\/70 { --tw-gradient-to: rgba(10, 25, 41, 0.7); }
.from-vaya-dark { --tw-gradient-from: #0a1929; --tw-gradient-to: #0a1929; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-vaya-blue { --tw-gradient-to: #1a365d; }

/* Max width */
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }

/* Space - Horizontal */
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-8 > * + * { margin-left: 2rem; }

/* Space - Vertical */
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

/* Transitions */
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-shadow { transition-property: box-shadow; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }

/* Hover states */
.hover\:text-vaya-teal:hover { color: #00d4aa; }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }

/* Responsive */
@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
}

@media (min-width: 768px) {
  /* Hide mobile button on desktop */
  .md\:hidden { 
    display: none !important; 
  }
  
  /* Show nav on desktop - override hidden class */
  /* Use attribute selector to match class="hidden md:flex" */
  nav[class*="md:flex"],
  [class*="md:flex"] { 
    display: flex !important; 
  }
  
  .md\:text-left { text-align: left; }
  .md\:justify-start { justify-content: flex-start; }
  .md\:mx-0 { margin-left: 0; margin-right: 0; }
}

/* Flex shrink */
.flex-shrink-0 { flex-shrink: 0; }

/* Text colors for form */
.text-vaya-dark { color: #0a1929; }

/* Red color for errors */
.text-red-400 { color: rgb(248 113 113); }

/* Custom Font Families */
.font-heading { font-family: 'Inter', sans-serif; }
.font-body { font-family: 'Inter', sans-serif; }

/* List Styles */
ul { list-style-type: disc; }
ul.space-y-2 { list-style-type: none; }
ul.space-y-2 li { list-style-type: none; }

/* Form Elements */
input[type="text"],
input[type="email"],
textarea {
  display: block;
  width: 100%;
  background-color: rgb(255 255 255) !important;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #0a1929 !important;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  margin-bottom: 0;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: #00d4aa;
  box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
textarea::placeholder {
  color: #9ca3af;
  font-family: 'Inter', sans-serif;
  opacity: 1;
}

/* Form spacing - ensure space-y-4 works */
form.space-y-4 > * {
  margin-top: 0;
  margin-bottom: 0;
}

form.space-y-4 > * + * {
  margin-top: 1rem;
}

/* Button Reset */
button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  color: inherit;
}

/* Accordion Styles */
.accordion-item {
  display: block;
  overflow: hidden;
}

.accordion-item.bg-white {
  background-color: rgb(255 255 255) !important;
}

.accordion-item.rounded-xl {
  border-radius: 0.75rem;
}

.accordion-header {
  background: none !important;
  border: none !important;
  padding: 1.5rem;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  width: 100%;
  text-align: left;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
}

.accordion-header:hover {
  background: none !important;
}

.accordion-content {
  display: block;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 0;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

.accordion-icon {
  flex-shrink: 0;
  margin-left: 1rem;
}

