/* tokens.css */
/* CSS Variables for consistent theming */
:root {
  /* Primary Colors */
  --primary: #0D4F5C;
  --primary-dark: #0A3D47;
  --primary-light: #1A7A8A;

  /* Accent Color */
  --accent: #FF6347;
  
  /* Secondary Colors */
  --secondary: #1A1A1A;
  --secondary-light: #333333;
  
  /* Neutral Colors */
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  
  /* Semantic Colors */
  --success: #22C55E;
  --error: #EF4444;
  --warning: #F59E0B;
  --info: #3B82F6;
  
  /* WhatsApp Brand Color */
  --whatsapp: #25D366;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  
  /* Line Heights */
  --leading-none: 1;
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 2;
  
  /* Font Weights */
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;
  --font-black: 900;
  
  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
  
  /* Border Radius */
  --radius-none: 0;
  --radius-sm: 0.125rem;
  --radius-base: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-3xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-base: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  
  /* Z-index */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-popover: 600;
  --z-tooltip: 700;
  
  /* Breakpoints (for reference in JS) */
  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
  --breakpoint-2xl: 1536px;
}

/* Dark mode variables (if needed in future) */
@media (prefers-color-scheme: dark) {
  :root {
    /* Override colors for dark mode here */
  }
}
/* reset.css */
/* Global Reset and Base Styles */

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin and padding */
* {
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: var(--leading-normal);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  color: var(--secondary);
  background-color: white;
}

/* Remove list styles on ul, ol elements */
ul,
ol {
  list-style: none;
}

/* Make images easier to work with */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base);
}

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

/* Focus styles */
:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* Selection */
::selection {
  background-color: var(--primary);
  color: white;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--secondary);
}

/* Paragraphs */
p {
  line-height: var(--leading-relaxed);
}

/* Strong and emphasis */
strong,
b {
  font-weight: var(--font-bold);
}

em,
i {
  font-style: italic;
}

/* Tables */
table {
  border-collapse: collapse;
  width: 100%;
}

/* Form elements */
button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
}

input,
textarea,
select {
  width: 100%;
}

/* Disabled state */
:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

/* Hidden elements */
[hidden] {
  display: none !important;
}

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

/* Skip navigation */
.skip-nav {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.skip-nav:focus {
  position: fixed;
  top: 1rem;
  inset-inline-start: 1rem;
  width: auto;
  height: auto;
  z-index: 9999;
  background: white;
  color: var(--secondary);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-lg);
  font-weight: var(--font-semibold);
  text-decoration: none;
}
/* typography.css */
/* Typography Styles */

/* Headings */
h1 {
  font-size: var(--text-5xl);
  font-weight: var(--font-extrabold);
  line-height: var(--leading-none);
  margin-bottom: var(--space-6);
}

h2 {
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-5);
}

h3 {
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-4);
}

h4 {
  font-size: var(--text-2xl);
  font-weight: var(--font-semibold);
  line-height: var(--leading-snug);
  margin-bottom: var(--space-3);
}

h5 {
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  line-height: var(--leading-snug);
  margin-bottom: var(--space-3);
}

h6 {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  line-height: var(--leading-normal);
  margin-bottom: var(--space-2);
}

/* Responsive typography */
@media (max-width: 768px) {
  h1 {
    font-size: var(--text-4xl);
  }
  
  h2 {
    font-size: var(--text-3xl);
  }
  
  h3 {
    font-size: var(--text-2xl);
  }
  
  h4 {
    font-size: var(--text-xl);
  }
  
  h5 {
    font-size: var(--text-lg);
  }
  
  h6 {
    font-size: var(--text-base);
  }
}

/* Body text */
p {
  margin-bottom: var(--space-4);
  color: var(--gray-700);
}

p:last-child {
  margin-bottom: 0;
}

/* Lead paragraph */
.lead {
  font-size: var(--text-xl);
  line-height: var(--leading-relaxed);
  color: var(--gray-600);
  font-weight: var(--font-light);
}

/* Small text */
.small,
small {
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
}

/* Lists */
ul,
ol {
  margin-bottom: var(--space-4);
  padding-left: var(--space-6);
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

li {
  margin-bottom: var(--space-2);
  line-height: var(--leading-relaxed);
}

li:last-child {
  margin-bottom: 0;
}

/* Nested lists */
ul ul,
ol ul {
  list-style-type: circle;
  margin-top: var(--space-2);
  margin-bottom: 0;
}

ul ol,
ol ol {
  list-style-type: lower-latin;
  margin-top: var(--space-2);
  margin-bottom: 0;
}

/* Blockquotes */
blockquote {
  margin: var(--space-6) 0;
  padding: var(--space-4) var(--space-6);
  border-left: 4px solid var(--primary);
  background-color: var(--gray-50);
  font-style: italic;
  color: var(--gray-700);
}

blockquote p {
  margin-bottom: var(--space-2);
}

blockquote cite {
  display: block;
  margin-top: var(--space-3);
  font-size: var(--text-sm);
  font-style: normal;
  font-weight: var(--font-medium);
  color: var(--gray-600);
}

/* Code */
code {
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  font-size: 0.875em;
  background-color: var(--gray-100);
  padding: 0.125em 0.25em;
  border-radius: var(--radius-base);
  color: var(--gray-800);
}

pre {
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  font-size: var(--text-sm);
  background-color: var(--gray-900);
  color: var(--gray-100);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  margin-bottom: var(--space-4);
}

pre code {
  background-color: transparent;
  padding: 0;
  color: inherit;
  font-size: inherit;
}

/* Links in content */
.content a,
article a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: all var(--transition-base);
}

.content a:hover,
article a:hover {
  color: var(--primary-dark);
  text-decoration-thickness: 2px;
}

/* Text utilities */
.text-center {
  text-align: center;
}

.text-left {
  text-align: start;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Font weights */
.font-light {
  font-weight: var(--font-light);
}

.font-normal {
  font-weight: var(--font-normal);
}

.font-medium {
  font-weight: var(--font-medium);
}

.font-semibold {
  font-weight: var(--font-semibold);
}

.font-bold {
  font-weight: var(--font-bold);
}

.font-extrabold {
  font-weight: var(--font-extrabold);
}

/* Text colors */
.text-primary {
  color: var(--primary);
}

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

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

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

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

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

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

.text-white {
  color: white;
}
/* grid.css */
/* Grid System */

/* Container */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-6);
  padding-right: var(--space-6);
}

@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;
    padding-left: var(--space-8);
    padding-right: var(--space-8);
  }
}

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

.container-fluid {
  width: 100%;
  padding-left: var(--space-6);
  padding-right: var(--space-6);
}

.container-narrow {
  max-width: 800px;
}

.container-wide {
  max-width: 1400px;
}

/* Basic Grid */
.grid {
  display: grid;
  gap: var(--space-6);
}

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

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

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-cols-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid-cols-6 {
  grid-template-columns: repeat(6, 1fr);
}

.grid-cols-12 {
  grid-template-columns: repeat(12, 1fr);
}

/* Auto-fit grid */
.grid-auto {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-auto-sm {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.grid-auto-md {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-auto-lg {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

/* Gap utilities */
.gap-0 {
  gap: 0;
}

.gap-2 {
  gap: var(--space-2);
}

.gap-4 {
  gap: var(--space-4);
}

.gap-6 {
  gap: var(--space-6);
}

.gap-8 {
  gap: var(--space-8);
}

.gap-10 {
  gap: var(--space-10);
}

.gap-12 {
  gap: var(--space-12);
}

/* Column span */
.col-span-1 {
  grid-column: span 1;
}

.col-span-2 {
  grid-column: span 2;
}

.col-span-3 {
  grid-column: span 3;
}

.col-span-4 {
  grid-column: span 4;
}

.col-span-5 {
  grid-column: span 5;
}

.col-span-6 {
  grid-column: span 6;
}

.col-span-full {
  grid-column: 1 / -1;
}

/* Responsive Grid */
@media (min-width: 640px) {
  .sm\:grid-cols-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .sm\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .sm\:grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .sm\:col-span-1 {
    grid-column: span 1;
  }
  
  .sm\:col-span-2 {
    grid-column: span 2;
  }
  
  .sm\:col-span-3 {
    grid-column: span 3;
  }
  
  .sm\:col-span-4 {
    grid-column: span 4;
  }
}

@media (min-width: 768px) {
  .md\:grid-cols-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .md\:grid-cols-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .md\:grid-cols-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  
  .md\:col-span-1 {
    grid-column: span 1;
  }
  
  .md\:col-span-2 {
    grid-column: span 2;
  }
  
  .md\:col-span-3 {
    grid-column: span 3;
  }
  
  .md\:col-span-4 {
    grid-column: span 4;
  }
  
  .md\:col-span-5 {
    grid-column: span 5;
  }
  
  .md\:col-span-6 {
    grid-column: span 6;
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .lg\:grid-cols-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .lg\:grid-cols-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  
  .lg\:col-span-1 {
    grid-column: span 1;
  }
  
  .lg\:col-span-2 {
    grid-column: span 2;
  }
  
  .lg\:col-span-3 {
    grid-column: span 3;
  }
  
  .lg\:col-span-4 {
    grid-column: span 4;
  }
  
  .lg\:col-span-5 {
    grid-column: span 5;
  }
  
  .lg\:col-span-6 {
    grid-column: span 6;
  }
}

/* Flexbox utilities */
.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

/* Justify content */
.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

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

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

/* Align items */
.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}

.items-baseline {
  align-items: baseline;
}

.items-stretch {
  align-items: stretch;
}

/* Align self */
.self-start {
  align-self: flex-start;
}

.self-center {
  align-self: center;
}

.self-end {
  align-self: flex-end;
}

.self-stretch {
  align-self: stretch;
}

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

.flex-auto {
  flex: 1 1 auto;
}

.flex-initial {
  flex: 0 1 auto;
}

.flex-none {
  flex: none;
}

.flex-grow {
  flex-grow: 1;
}

.flex-grow-0 {
  flex-grow: 0;
}

.flex-shrink {
  flex-shrink: 1;
}

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

/* Order */
.order-first {
  order: -9999;
}

.order-last {
  order: 9999;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

/* Spacing utilities */
.space-x-2 > * + * {
  margin-left: var(--space-2);
}

.space-x-4 > * + * {
  margin-left: var(--space-4);
}

.space-x-6 > * + * {
  margin-left: var(--space-6);
}

.space-x-8 > * + * {
  margin-left: var(--space-8);
}

.space-y-2 > * + * {
  margin-top: var(--space-2);
}

.space-y-4 > * + * {
  margin-top: var(--space-4);
}

.space-y-6 > * + * {
  margin-top: var(--space-6);
}

.space-y-8 > * + * {
  margin-top: var(--space-8);
}

/* Section spacing */
.section {
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
}

.section-sm {
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
}

.section-lg {
  padding-top: var(--space-32);
  padding-bottom: var(--space-32);
}

/* Content sections */
.content-section {
  margin-bottom: var(--space-16);
}

.content-section:last-child {
  margin-bottom: 0;
}
/* buttons.css */
/* Button Components */

/* Base button styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-8);
  font-weight: var(--font-semibold);
  font-size: var(--text-base);
  line-height: var(--leading-none);
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Button sizes */
.btn-sm {
  padding: var(--space-2) var(--space-6);
  font-size: var(--text-sm);
}

.btn-lg {
  padding: var(--space-4) var(--space-10);
  font-size: var(--text-lg);
}

.btn-xl {
  padding: var(--space-5) var(--space-12);
  font-size: var(--text-xl);
}

/* Button variants */
.btn-primary {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 5px 10px rgba(255, 107, 53, 0.2);
}

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

.btn-secondary:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 107, 53, 0.2);
}

.btn-dark {
  background-color: var(--secondary);
  color: white;
  border-color: var(--secondary);
}

.btn-dark:hover {
  background-color: var(--secondary-light);
  border-color: var(--secondary-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(26, 26, 26, 0.3);
}

.btn-white {
  background-color: white;
  color: var(--secondary);
  border-color: white;
}

.btn-white:hover {
  background-color: var(--gray-50);
  border-color: var(--gray-50);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-success {
  background-color: var(--success);
  color: white;
  border-color: var(--success);
}

.btn-success:hover {
  background-color: #1ea750;
  border-color: #1ea750;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
}

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: white;
  border-color: var(--whatsapp);
}

.btn-whatsapp:hover {
  background-color: #20BA5A;
  border-color: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* Ghost buttons */
.btn-ghost {
  background-color: transparent;
  color: white;
  border-color: white;
}

.btn-ghost:hover {
  background-color: white;
  color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

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

.btn-ghost-primary:hover {
  background-color: rgba(255, 107, 53, 0.1);
  color: var(--primary-dark);
}

/* Button with icon */
.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.btn-icon i,
.btn-icon svg {
  font-size: 1.1em;
}

/* Icon-only button */
.btn-icon-only {
  padding: var(--space-3);
  width: 48px;
  height: 48px;
}

.btn-icon-only.btn-sm {
  padding: var(--space-2);
  width: 36px;
  height: 36px;
}

.btn-icon-only.btn-lg {
  padding: var(--space-4);
  width: 56px;
  height: 56px;
}

/* Button group */
.btn-group {
  display: inline-flex;
  gap: var(--space-2);
}

.btn-group-vertical {
  flex-direction: column;
}

/* Button block */
.btn-block {
  display: flex;
  width: 100%;
}

/* Loading state */
.btn-loading {
  color: transparent;
  pointer-events: none;
}

.btn-loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  border: 2px solid currentColor;
  border-radius: 50%;
  border-top-color: transparent;
  animation: btn-loading-spinner 0.6s linear infinite;
}

@keyframes btn-loading-spinner {
  to {
    transform: rotate(360deg);
  }
}


/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  background-color: var(--whatsapp);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-base);
  z-index: var(--z-modal);
  text-decoration: none;
  animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
  color: white;
  animation: none;
}

.whatsapp-float i {
  font-size: 30px;
}

/* Call to Action buttons */
.cta-button {
  padding: var(--space-4) var(--space-10);
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.cta-button:hover::before {
  left: 100%;
}
/* header.css */
/* Header Layout */

/* Main header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.header.header-hidden {
  transform: translateY(-100%);
}

/* Transparent header on homepage hero */
.home-page .header {
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.home-page .header.header-scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

@media (min-width: 1280px) {
  .header-container {
    padding: 0 var(--space-8);
  }
}

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

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform var(--transition-base);
}

.header-logo:hover {
  transform: scale(1.05);
}

.header-logo img {
  height: 48px;
  width: auto;
}

/* Default: show dark logo on solid white header */
.logo-light {
  display: none;
}

.logo-dark {
  display: block;
}

/* Homepage: show light logo on transparent header */
.home-page .logo-light {
  display: block;
}

.home-page .logo-dark {
  display: none;
}

/* Homepage scrolled: switch to dark logo */
.home-page .header-scrolled .logo-light {
  display: none;
}

.home-page .header-scrolled .logo-dark {
  display: block;
}

/* Navigation */
.header-nav {
  display: none;
}

@media (min-width: 1024px) {
  .header-nav {
    display: flex;
    align-items: center;
    gap: var(--space-8);
  }
}

.nav-link {
  font-weight: var(--font-medium);
  color: var(--secondary);
  text-decoration: none;
  position: relative;
  transition: color var(--transition-base);
}

/* White nav on homepage transparent header */
.home-page .nav-link {
  color: white;
}

.home-page .header-scrolled .nav-link {
  color: var(--secondary);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Language switcher dropdown */
.lang-switcher-dropdown {
  display: none;
  position: relative;
}

@media (min-width: 1024px) {
  .lang-switcher-dropdown {
    display: block;
  }
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--gray-100);
  border: none;
  border-radius: var(--radius-full);
  color: var(--secondary);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  cursor: pointer;
  transition: all var(--transition-base);
}

.lang-current:hover {
  background: var(--gray-200);
}

/* Homepage: light lang switcher on transparent header */
.home-page .lang-current {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.home-page .lang-current:hover {
  background: rgba(255, 255, 255, 0.2);
}

.home-page .header-scrolled .lang-current {
  background: var(--gray-100);
  color: var(--secondary);
}

.home-page .header-scrolled .lang-current:hover {
  background: var(--gray-200);
}

.lang-flag {
  font-size: 1.1em;
}

.lang-code {
  font-weight: var(--font-semibold);
}

.lang-arrow {
  font-size: 0.7em;
  transition: transform var(--transition-base);
}

.lang-switcher-dropdown:hover .lang-arrow {
  transform: rotate(180deg);
}

.lang-dropdown-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: white;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  min-width: 160px;
  padding: 6px 0;
  z-index: var(--z-popover);
  transition: opacity 0.2s ease, visibility 0s 0.2s;
}

.lang-switcher-dropdown:hover .lang-dropdown-menu {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.2s ease, visibility 0s;
}

.lang-dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  color: var(--secondary);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: all var(--transition-base);
}

.lang-dropdown-item:hover {
  background: var(--gray-50);
  color: var(--primary);
}

.lang-dropdown-item .lang-name {
  font-weight: var(--font-medium);
}

/* Header CTA */
.header-cta {
  display: none;
}

@media (min-width: 1024px) {
  .header-cta {
    display: block;
  }
}

/* Mobile menu button */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 24px;
  cursor: pointer;
  transition: all var(--transition-base);
}

/* Homepage: white mobile btn on transparent header */
.home-page .mobile-menu-btn {
  color: white;
}

.home-page .header-scrolled .mobile-menu-btn {
  color: var(--secondary);
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--gray-900);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-6);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.mobile-nav-link {
  display: block;
  padding: var(--space-3) 0;
  font-weight: var(--font-medium);
  color: white;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-base);
}

.mobile-nav-link:hover {
  color: var(--primary);
  padding-left: var(--space-4);
}

.mobile-menu-footer {
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Language Switcher */
.mobile-lang-switcher {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-6);
  margin-bottom: var(--space-4);
  padding: var(--space-4) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-lang-link {
  padding: var(--space-2) var(--space-4);
  font-size: 1rem;
  font-weight: var(--font-medium);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-base);
  transition: all var(--transition-base);
  text-decoration: none;
}

.mobile-lang-link:hover,
.mobile-lang-link.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* Sticky header styles for different pages */
.header-transparent {
  background: transparent;
}

.header-dark {
  background: var(--secondary);
}

.header-dark .nav-link {
  color: white;
}

.header-white {
  background: white;
  box-shadow: var(--shadow-sm);
}

.header-white .nav-link {
  color: var(--secondary);
}

.header-white .mobile-menu-btn {
  color: var(--secondary);
}

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

.nav-dropdown-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  background-color: white;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.15);
  z-index: var(--z-popover);
  border-radius: 8px;
  padding: 8px 0;
  top: calc(100% + 10px);
  transition: opacity 0.3s ease, visibility 0s 0.3s;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu:hover {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease, visibility 0s;
}

.nav-dropdown-item {
  color: var(--secondary);
  padding: 10px 20px;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  font-weight: 400;
}

.nav-dropdown-item:hover {
  background-color: var(--gray-50);
  color: var(--primary);
  padding-left: 24px;
}

/* Header scrolled state for dropdowns */
.header-scrolled .nav-dropdown-menu {
  box-shadow: 0px 8px 20px 0px rgba(0,0,0,0.12);
}

/* Keyboard-accessible dropdowns */
.nav-dropdown.is-open .nav-dropdown-menu {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease, visibility 0s;
}

.lang-switcher-dropdown.is-open .lang-dropdown-menu {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.2s ease, visibility 0s;
}

.lang-switcher-dropdown.is-open .lang-arrow {
  transform: rotate(180deg);
}

/* Mobile nav dropdown - hide on mobile */
@media (max-width: 768px) {
  .nav-dropdown .nav-link::after {
    display: none;
  }

  .nav-dropdown-menu {
    display: none !important;
  }
}
/* footer.css */
/* Footer Layout */

/* Main footer */
.footer {
  background: var(--secondary);
  color: white;
  padding: var(--space-16) 0 var(--space-8);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* Footer grid */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

/* Footer column */
.footer-column h3 {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-6);
  color: white;
}

.footer-column h4 {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-4);
  color: white;
}

/* Footer about */
.footer-about {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .footer-about {
    grid-column: span 1;
  }
}

.footer-logo {
  display: inline-block;
  margin-bottom: var(--space-4);
}

.footer-logo img {
  height: 48px;
  width: auto;
}

.footer-description {
  color: var(--gray-400);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}

/* Footer links */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-link {
  color: var(--gray-400);
  text-decoration: none;
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.footer-link:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-link i {
  font-size: var(--text-sm);
  color: var(--primary);
}

/* Footer contact */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  color: var(--gray-400);
}

.footer-contact-item:last-child {
  margin-bottom: 0;
}

.footer-contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.footer-contact-info {
  flex: 1;
}

.footer-contact-info strong {
  display: block;
  color: white;
  margin-bottom: var(--space-1);
}

.footer-contact-info a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color var(--transition-base);
}

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

/* Footer social */
.footer-social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.social-link {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all var(--transition-base);
  font-size: 18px;
}

.social-link:hover {
  background: var(--primary);
  transform: translateY(-4px);
  color: white;
}

.social-link i {
  font-size: 20px;
}

/* Footer newsletter */
.footer-newsletter {
  background: rgba(255, 255, 255, 0.05);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
}

.newsletter-form {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

@media (max-width: 640px) {
  .newsletter-form {
    flex-direction: column;
  }
}

.newsletter-input {
  flex: 1;
  padding: var(--space-3) var(--space-4);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  color: white;
  transition: all var(--transition-base);
}

.newsletter-input::placeholder {
  color: var(--gray-500);
}

.newsletter-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary);
}

/* Footer bottom */
.footer-bottom {
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

@media (max-width: 768px) {
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

.footer-copyright {
  color: var(--gray-400);
  font-size: var(--text-sm);
}

.footer-copyright a {
  color: var(--primary);
  text-decoration: none;
  font-weight: var(--font-medium);
}

.footer-copyright a:hover {
  text-decoration: underline;
}

/* Footer menu */
.footer-menu {
  display: flex;
  gap: var(--space-6);
}

@media (max-width: 640px) {
  .footer-menu {
    flex-direction: column;
    gap: var(--space-3);
    text-align: center;
  }
}

.footer-menu-link {
  color: var(--gray-400);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color var(--transition-base);
}

.footer-menu-link:hover {
  color: var(--primary);
}

/* Payment methods */
.payment-methods {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.payment-methods img {
  height: 32px;
  width: auto;
  opacity: 0.8;
  transition: opacity var(--transition-base);
}

.payment-methods img:hover {
  opacity: 1;
}

/* Awards and certifications */
.footer-awards {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.award-badge {
  height: 60px;
  width: auto;
  opacity: 0.8;
  transition: all var(--transition-base);
}

.award-badge:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: calc(var(--space-6) + 70px);
  right: var(--space-6);
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  z-index: var(--z-fixed);
}

.back-to-top.show,
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  color: white;
}

/* Alternative footer styles */
.footer-light {
  background: var(--gray-100);
  color: var(--gray-700);
}

.footer-light .footer-column h3,
.footer-light .footer-column h4,
.footer-light .footer-contact-info strong {
  color: var(--secondary);
}

.footer-light .footer-link,
.footer-light .footer-contact-info a,
.footer-light .footer-copyright,
.footer-light .footer-menu-link {
  color: var(--gray-600);
}

.footer-light .social-link {
  background: var(--gray-200);
  color: var(--gray-600);
}

.footer-light .footer-bottom {
  border-top-color: var(--gray-300);
}
/* cards.css */
/* Card Components */

/* Base card */
.card {
  background: white;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

/* Card sections */
.card-header {
  padding: var(--space-6);
  border-bottom: 1px solid var(--gray-200);
}

.card-body {
  padding: var(--space-6);
}

.card-footer {
  padding: var(--space-6);
  background-color: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}

/* Card with image */
.card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card-image img {
  transform: scale(1.05);
}

/* Card badge */
.card-badge {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: var(--primary);
  color: white;
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Tour card specific */
.tour-card {
  background: white;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.tour-card-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.tour-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

/* Placeholder images for tours */
.tour-card-image:not(:has(img[src])),
.tour-card-image img[src=""] {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
}

.tour-card-image:not(:has(img[src]))::before,
.tour-card-image img[src=""]::before {
  content: "🏍️";
}

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

.tour-card-badge {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: var(--primary);
  color: white;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tour-card-content {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tour-card-title {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--secondary);
  margin-bottom: var(--space-3);
}

.tour-card-description {
  color: var(--gray-600);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
  flex: 1;
}

.tour-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.tour-card-feature {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-sm);
  color: var(--gray-600);
}

.tour-card-feature i {
  color: var(--primary);
}

.tour-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-4);
  border-top: 1px solid var(--gray-200);
  margin-top: auto;
}

.tour-card-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
}

.tour-card-price-current {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--primary);
}

.tour-card-price-original {
  font-size: var(--text-lg);
  color: var(--gray-400);
  text-decoration: line-through;
}

.tour-card-price-unit {
  font-size: var(--text-sm);
  color: var(--gray-600);
}

/* Tour card included items */
.tour-card-included {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tour-card-included li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--gray-600);
  margin-bottom: var(--space-1);
  line-height: var(--leading-relaxed);
}

.tour-card-included li:last-child {
  margin-bottom: 0;
}

.tour-card-included li i {
  color: var(--success);
  font-size: var(--text-xs);
  flex-shrink: 0;
}

.tour-card-included li span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tour-card-pickup-notice {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 500;
  margin-top: 4px;
}

/* Tour card link styling */
a.tour-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Testimonial card */
.testimonial-card {
  background: white;
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.testimonial-quote {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--gray-700);
  margin-bottom: var(--space-6);
  font-style: italic;
}

.testimonial-quote::before {
  content: """;
  font-size: 4rem;
  color: var(--primary);
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  line-height: 1;
  opacity: 0.2;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-weight: var(--font-semibold);
  color: var(--secondary);
  margin-bottom: var(--space-1);
}

.testimonial-role {
  font-size: var(--text-sm);
  color: var(--gray-600);
}

.testimonial-rating {
  display: flex;
  gap: var(--space-1);
  margin-bottom: var(--space-2);
}

.testimonial-rating i {
  color: #FFC107;
  font-size: var(--text-lg);
}

/* Feature card */
.feature-card {
  text-align: center;
  padding: var(--space-8);
  background: white;
  border-radius: var(--radius-2xl);
  transition: all var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-4);
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  color: white;
}

.feature-icon i,
.feature-icon svg {
  font-size: 2rem;
  color: var(--primary);
  transition: color var(--transition-base);
}

.feature-card:hover .feature-icon i,
.feature-card:hover .feature-icon svg {
  color: white;
}

.feature-title {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--secondary);
  margin-bottom: var(--space-3);
}

.feature-description {
  color: var(--gray-600);
  line-height: var(--leading-relaxed);
}

/* Stats card */
.stats-card {
  text-align: center;
  padding: var(--space-6);
}

.stats-number {
  font-size: var(--text-5xl);
  font-weight: var(--font-bold);
  color: var(--primary);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stats-label {
  font-size: var(--text-lg);
  color: var(--gray-600);
  font-weight: var(--font-medium);
}

/* Blog card */
.blog-card {
  background: white;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.blog-card-image {
  height: 200px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-size: var(--text-sm);
  color: var(--gray-500);
  margin-bottom: var(--space-3);
}

.blog-card-meta i {
  color: var(--primary);
}

.blog-card-title {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--secondary);
  margin-bottom: var(--space-3);
  line-height: var(--leading-snug);
}

.blog-card-excerpt {
  color: var(--gray-600);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
  flex: 1;
}

.blog-card-link {
  color: var(--primary);
  font-weight: var(--font-semibold);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: gap var(--transition-base);
}

.blog-card-link:hover {
  gap: var(--space-3);
}
/* accordion.css */
/* Accordion Components */

/* Base Accordion Styles */
.accordion {
  width: 100%;
}

.accordion-item {
  width: 100%;
  margin-bottom: var(--space-4);
}

.accordion-toggle {
  width: 100%;
  text-align: start;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4);
  background-color: var(--gray-100);
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: background-color var(--transition-base);
  font-weight: var(--font-medium);
  color: var(--gray-700);
}

.accordion-toggle:hover {
  background-color: var(--gray-200);
}

.accordion-toggle:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.accordion-toggle-text {
  flex: 1;
  padding-right: var(--space-4);
}

.accordion-icon {
  flex-shrink: 0;
  color: var(--gray-500);
  transition: transform var(--transition-base);
}

.accordion-toggle[aria-expanded="true"] .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  background-color: var(--gray-100);
  padding: var(--space-4);
  margin-top: 1px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}

.accordion-content.hidden {
  display: none;
}

.accordion-content-inner {
  color: var(--gray-600);
  line-height: var(--leading-relaxed);
}

/* FAQ Accordion Specific */
.faq-accordion {
}

.faq-item {
  margin-bottom: var(--space-4);
}

.faq-toggle {
  width: 100%;
  text-align: start;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4);
  background-color: #f1f5f9;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-toggle:hover {
  background-color: #e2e8f0;
}

.faq-toggle:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.faq-question {
  font-weight: var(--font-medium);
  color: var(--gray-700);
  flex: 1;
  padding-right: var(--space-4);
}

.faq-icon {
  flex-shrink: 0;
  color: var(--gray-500);
  transition: transform 0.3s ease;
}

.faq-toggle[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  background-color: #f1f5f9;
  padding: var(--space-4);
  margin-top: 1px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.faq-content.hidden {
  display: none;
}

.faq-answer {
  color: var(--gray-600);
  line-height: var(--leading-relaxed);
}

/* Chevron Icon Rotation */
.fa-chevron-down {
  transition: transform 0.3s ease;
}

.rotate-180 {
  transform: rotate(180deg);
}

/* Accordion Variants */
.accordion-bordered .accordion-toggle {
  background-color: white;
  border: 1px solid var(--gray-300);
}

.accordion-bordered .accordion-toggle:hover {
  background-color: var(--gray-50);
  border-color: var(--gray-400);
}

.accordion-bordered .accordion-content {
  background-color: white;
  border: 1px solid var(--gray-300);
  border-top: none;
  margin-top: 0;
}

/* Flush Accordion (no background) */
.accordion-flush .accordion-toggle {
  background-color: transparent;
  border-bottom: 1px solid var(--gray-200);
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
}

.accordion-flush .accordion-toggle:hover {
  background-color: transparent;
}

.accordion-flush .accordion-content {
  background-color: transparent;
  padding-left: 0;
  padding-right: 0;
  border-radius: 0;
}

/* Plus/Minus Icon Variant */
.accordion-plus-minus .accordion-icon::before {
  content: "+";
  font-size: 1.25rem;
  font-weight: bold;
}

.accordion-plus-minus .accordion-toggle[aria-expanded="true"] .accordion-icon::before {
  content: "−";
}

.accordion-plus-minus .accordion-icon {
  transform: none;
}

/* Animated Height Transition */
.accordion-animated .accordion-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out, padding 0.3s ease-out;
  padding-top: 0;
  padding-bottom: 0;
}

.accordion-animated .accordion-content:not(.hidden) {
  max-height: 500px;
  opacity: 1;
  padding-top: var(--space-4);
  padding-bottom: var(--space-4);
}

/* Responsive Adjustments */
@media (max-width: 640px) {
  .accordion-toggle {
    padding: var(--space-3);
    font-size: var(--text-sm);
  }
  
  .accordion-content {
    padding: var(--space-3);
  }
  
  .faq-toggle {
    padding: var(--space-3);
  }
  
  .faq-content {
    padding: var(--space-3);
  }
}
/* dropdowns.css */
/* Dropdown Components */

/* Base Dropdown Styles */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--gray-700);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.dropdown-toggle:hover {
  background-color: var(--gray-50);
}

.dropdown-toggle:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.dropdown-toggle i {
  margin-left: var(--space-2);
  margin-right: calc(var(--space-1) * -1);
}

.dropdown-menu {
  position: absolute;
  right: 0;
  margin-top: var(--space-2);
  min-width: 14rem;
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  z-index: var(--z-dropdown);
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform-origin: top right;
}

.dropdown-menu.hidden {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
}

.dropdown-menu-items {
  padding: var(--space-1);
}

.dropdown-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  color: var(--gray-700);
  text-align: start;
  background: none;
  border: none;
  border-radius: var(--radius-base);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.dropdown-item:hover {
  background-color: var(--gray-100);
  color: var(--gray-900);
}

.dropdown-item i {
  width: 1.25rem;
  margin-right: var(--space-2);
  color: inherit;
}

.dropdown-divider {
  height: 1px;
  margin: var(--space-2) 0;
  background-color: var(--gray-200);
}

/* Share Dropdown Specific */
.share-dropdown {
  position: relative;
  display: inline-block;
}

.share-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: white;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--gray-700);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.share-button:hover {
  background-color: var(--gray-50);
}

.share-button:focus {
  outline: none;
}

.share-dropdown-menu {
  position: absolute;
  right: 0;
  margin-top: var(--space-2);
  width: 14rem;
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  z-index: var(--z-dropdown);
}

.share-dropdown-menu.hidden {
  display: none;
}

.share-dropdown-items {
  padding: var(--space-1);
}

.share-dropdown-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  color: var(--gray-700);
  text-align: start;
  background: none;
  border: none;
  border-radius: var(--radius-base);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.share-dropdown-item:hover {
  background-color: var(--gray-100);
}

.share-dropdown-item i {
  width: 1.25rem;
  margin-right: var(--space-2);
}

/* Social Media Colors */
.share-whatsapp i {
  color: var(--whatsapp);
}

.share-facebook i {
  color: #1877f2;
}

.share-twitter i {
  color: #1da1f2;
}

.share-linkedin i {
  color: #0077b5;
}

.share-email i {
  color: var(--gray-600);
}

/* Copy Link Button States */
.copy-link-button {
  position: relative;
}

.copy-link-button.copied {
  color: var(--success);
}

.copy-link-button.copied i {
  color: var(--success);
}

/* Dropdown Alignment Variants */
.dropdown-menu-left {
  right: auto;
  left: 0;
  transform-origin: top left;
}

.dropdown-menu-center {
  right: 50%;
  transform: translateX(50%);
  transform-origin: top center;
}

/* Mobile Responsive */
@media (max-width: 640px) {
  .dropdown-menu {
    position: fixed;
    left: var(--space-4);
    right: var(--space-4);
    top: 50%;
    transform: translateY(-50%);
    max-width: none;
  }
  
  .dropdown-menu.hidden {
    transform: translateY(-50%) scale(0.95);
  }
}

/* Dropdown Animation */
@keyframes dropdownSlideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-menu:not(.hidden) {
  animation: dropdownSlideDown 0.2s ease-out;
}
/* forms.css */
/* Form Components */

/* Form container */
.form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: var(--space-8);
  background: white;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
}

/* Form groups */
.form-group {
  margin-bottom: var(--space-6);
}

.form-group:last-child {
  margin-bottom: 0;
}

/* Form labels */
.form-label {
  display: block;
  margin-bottom: var(--space-2);
  font-weight: var(--font-medium);
  font-size: var(--text-sm);
  color: var(--gray-700);
}

.form-label.required::after {
  content: " *";
  color: var(--error);
}

/* Form inputs */
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--gray-900);
  background-color: white;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  appearance: none;
}

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

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--gray-400);
}

/* Textarea specific */
.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Select specific */
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236B7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

/* Input sizes */
.form-input-sm,
.form-select-sm {
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
}

.form-input-lg,
.form-select-lg {
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-lg);
}

/* Input with icon */
.form-input-icon {
  position: relative;
}

.form-input-icon .form-input {
  padding-left: 2.75rem;
}

.form-input-icon-right .form-input {
  padding-left: var(--space-4);
  padding-right: 2.75rem;
}

.form-input-icon i,
.form-input-icon svg {
  position: absolute;
  left: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  pointer-events: none;
}

.form-input-icon-right i,
.form-input-icon-right svg {
  left: auto;
  right: var(--space-4);
}

/* Checkbox and Radio */
.form-checkbox,
.form-radio {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-3);
  cursor: pointer;
}

.form-checkbox input[type="checkbox"],
.form-radio input[type="radio"] {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: var(--space-2);
  border: 2px solid var(--gray-300);
  cursor: pointer;
  flex-shrink: 0;
}

.form-checkbox input[type="checkbox"] {
  border-radius: var(--radius-base);
}

.form-radio input[type="radio"] {
  border-radius: 50%;
}

.form-checkbox input[type="checkbox"]:checked,
.form-radio input[type="radio"]:checked {
  background-color: var(--primary);
  border-color: var(--primary);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.form-radio input[type="radio"]:checked {
  background-image: none;
  position: relative;
}

.form-radio input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.375rem;
  height: 0.375rem;
  background-color: white;
  border-radius: 50%;
}

/* Form help text */
.form-help {
  margin-top: var(--space-2);
  font-size: var(--text-sm);
  color: var(--gray-500);
}

/* Form validation states */
.form-input.is-valid,
.form-textarea.is-valid,
.form-select.is-valid {
  border-color: var(--success);
}

.form-input.is-valid:focus,
.form-textarea.is-valid:focus,
.form-select.is-valid:focus {
  border-color: var(--success);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-input.is-invalid,
.form-textarea.is-invalid,
.form-select.is-invalid {
  border-color: var(--error);
}

.form-input.is-invalid:focus,
.form-textarea.is-invalid:focus,
.form-select.is-invalid:focus {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-error {
  display: block;
  margin-top: var(--space-2);
  font-size: var(--text-sm);
  color: var(--error);
}

.form-success {
  display: block;
  margin-top: var(--space-2);
  font-size: var(--text-sm);
  color: var(--success);
}

/* Form row */
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-4);
}

/* Date picker styling */
input[type="date"] {
  position: relative;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  right: var(--space-3);
  opacity: 0.6;
  cursor: pointer;
}

/* Number input - remove spinners */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

/* File upload */
.form-file {
  position: relative;
  display: inline-block;
  cursor: pointer;
  overflow: hidden;
}

.form-file input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
}

.form-file-label {
  display: inline-flex;
  align-items: center;
  padding: var(--space-3) var(--space-6);
  background-color: var(--gray-100);
  color: var(--gray-700);
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-lg);
  font-weight: var(--font-medium);
  transition: all var(--transition-base);
}

.form-file:hover .form-file-label {
  background-color: var(--gray-200);
  border-color: var(--gray-400);
}

.form-file input[type="file"]:focus + .form-file-label {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Toggle switch */
.form-switch {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.form-switch input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.form-switch-toggle {
  position: relative;
  width: 3rem;
  height: 1.5rem;
  background-color: var(--gray-300);
  border-radius: var(--radius-full);
  transition: background-color var(--transition-base);
  margin-right: var(--space-3);
}

.form-switch input[type="checkbox"]:checked + .form-switch-toggle {
  background-color: var(--primary);
}

.form-switch-toggle::after {
  content: '';
  position: absolute;
  top: 0.125rem;
  left: 0.125rem;
  width: 1.25rem;
  height: 1.25rem;
  background-color: white;
  border-radius: var(--radius-full);
  transition: transform var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.form-switch input[type="checkbox"]:checked + .form-switch-toggle::after {
  transform: translateX(1.5rem);
}

/* Form actions */
.form-actions {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--gray-200);
}

.form-actions-right {
  justify-content: flex-end;
}

.form-actions-center {
  justify-content: center;
}

.form-actions-space {
  justify-content: space-between;
}

/* Booking form specific */
.booking-form {
  background: white;
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}

.booking-form-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.booking-form-header h3 {
  color: var(--primary);
  margin-bottom: var(--space-2);
}

.booking-form-header p {
  color: var(--gray-600);
}
/* responsive.css */
/* Utilities */
.bg-primary {
  background-color: var(--primary);
}

.bg-secondary {
  background-color: var(--secondary);
}

.bg-white {
  background-color: white;
}

.bg-gray-50 {
  background-color: var(--gray-50);
}

.bg-gray-100 {
  background-color: var(--gray-100);
}

.bg-gray-900 {
  background-color: var(--gray-900);
}

/* Margin utilities */
.m-0 { margin: 0; }
.m-2 { margin: var(--space-2); }
.m-4 { margin: var(--space-4); }
.m-6 { margin: var(--space-6); }
.m-8 { margin: var(--space-8); }

.mt-0 { margin-top: 0; }
.mt-2 { margin-top: var(--space-2); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }
.mt-16 { margin-top: var(--space-16); }

.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: var(--space-2); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-12 { margin-bottom: var(--space-12); }
.mb-16 { margin-bottom: var(--space-16); }

.ml-0 { margin-left: 0; }
.ml-2 { margin-left: var(--space-2); }
.ml-4 { margin-left: var(--space-4); }
.ml-6 { margin-left: var(--space-6); }
.ml-8 { margin-left: var(--space-8); }

.mr-0 { margin-right: 0; }
.mr-2 { margin-right: var(--space-2); }
.mr-4 { margin-right: var(--space-4); }
.mr-6 { margin-right: var(--space-6); }
.mr-8 { margin-right: var(--space-8); }

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

/* Padding utilities */
.p-0 { padding: 0; }
.p-2 { padding: var(--space-2); }
.p-4 { padding: var(--space-4); }
.p-6 { padding: var(--space-6); }
.p-8 { padding: var(--space-8); }

.pt-0 { padding-top: 0; }
.pt-2 { padding-top: var(--space-2); }
.pt-4 { padding-top: var(--space-4); }
.pt-6 { padding-top: var(--space-6); }
.pt-8 { padding-top: var(--space-8); }
.pt-12 { padding-top: var(--space-12); }
.pt-16 { padding-top: var(--space-16); }

.pb-0 { padding-bottom: 0; }
.pb-2 { padding-bottom: var(--space-2); }
.pb-4 { padding-bottom: var(--space-4); }
.pb-6 { padding-bottom: var(--space-6); }
.pb-8 { padding-bottom: var(--space-8); }
.pb-12 { padding-bottom: var(--space-12); }
.pb-16 { padding-bottom: var(--space-16); }

.pl-0 { padding-left: 0; }
.pl-2 { padding-left: var(--space-2); }
.pl-4 { padding-left: var(--space-4); }
.pl-6 { padding-left: var(--space-6); }
.pl-8 { padding-left: var(--space-8); }

.pr-0 { padding-right: 0; }
.pr-2 { padding-right: var(--space-2); }
.pr-4 { padding-right: var(--space-4); }
.pr-6 { padding-right: var(--space-6); }
.pr-8 { padding-right: var(--space-8); }

.px-0 { padding-left: 0; padding-right: 0; }
.px-2 { padding-left: var(--space-2); padding-right: var(--space-2); }
.px-4 { padding-left: var(--space-4); padding-right: var(--space-4); }
.px-6 { padding-left: var(--space-6); padding-right: var(--space-6); }
.px-8 { padding-left: var(--space-8); padding-right: var(--space-8); }

.py-0 { padding-top: 0; padding-bottom: 0; }
.py-2 { padding-top: var(--space-2); padding-bottom: var(--space-2); }
.py-4 { padding-top: var(--space-4); padding-bottom: var(--space-4); }
.py-6 { padding-top: var(--space-6); padding-bottom: var(--space-6); }
.py-8 { padding-top: var(--space-8); padding-bottom: var(--space-8); }
.py-12 { padding-top: var(--space-12); padding-bottom: var(--space-12); }
.py-16 { padding-top: var(--space-16); padding-bottom: var(--space-16); }
.py-20 { padding-top: var(--space-20); padding-bottom: var(--space-20); }

/* Display utilities */
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.hidden { display: none; }

/* Position utilities */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

/* Z-index utilities */
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* Width utilities */
.w-full { width: 100%; }
.w-auto { width: auto; }
.max-w-full { max-width: 100%; }

/* Height utilities */
.h-full { height: 100%; }
.h-auto { height: auto; }
.min-h-screen { min-height: 100vh; }

/* Overflow utilities */
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }

/* Border radius utilities */
.rounded-none { border-radius: 0; }
.rounded-sm { border-radius: var(--radius-sm); }
.rounded { border-radius: var(--radius-base); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: var(--radius-2xl); }
.rounded-3xl { border-radius: var(--radius-3xl); }
.rounded-full { border-radius: var(--radius-full); }

/* Shadow utilities */
.shadow-none { box-shadow: none; }
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow { box-shadow: var(--shadow-base); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-2xl { box-shadow: var(--shadow-2xl); }

/* Transition utilities */
.transition-none { transition: none; }
.transition-all { transition: all var(--transition-base); }
.transition-colors { transition: color var(--transition-base), background-color var(--transition-base), border-color var(--transition-base); }
.transition-opacity { transition: opacity var(--transition-base); }
.transition-transform { transition: transform var(--transition-base); }

/* Animation utilities */
@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes pulse {
  50% {
    opacity: .5;
  }
}

.animate-spin { animation: spin 1s linear infinite; }
.animate-ping { animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
.animate-bounce { animation: bounce 1s infinite; }

/* Responsive utilities */
@media (min-width: 640px) {
  .sm\:block { display: block; }
  .sm\:inline-block { display: inline-block; }
  .sm\:flex { display: flex; }
  .sm\:hidden { display: none; }
}

@media (min-width: 768px) {
  .md\:block { display: block; }
  .md\:inline-block { display: inline-block; }
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
}

@media (min-width: 1024px) {
  .lg\:block { display: block; }
  .lg\:inline-block { display: inline-block; }
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
}

/* Custom animations */
.fade-in {
  animation: fadeIn 0.8s ease-in;
}

.slide-in-left {
  animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Hero background overlay */
.hero-overlay {
  position: relative;
}

.hero-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
  z-index: 1;
}

.hero-overlay > * {
  position: relative;
  z-index: 2;
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--primary);
  z-index: var(--z-tooltip);
  transition: width 0.2s ease;
}

/* Loading spinner */
.spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 107, 53, 0.3);
  border-radius: 50%;
  border-top-color: var(--primary);
  animation: spin 1s ease-in-out infinite;
}

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

/* Focus visible only for keyboard navigation */
.focus-visible:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.focus-visible:focus:not(:focus-visible) {
  outline: none;
}

/* Print styles */
@media print {
  .no-print {
    display: none !important;
  }
  
  .print-only {
    display: block !important;
  }
  
  * {
    color: black !important;
    background: white !important;
  }
}
/* utilities.css */
/* Utility Classes — replacements for Tailwind CDN utilities used in templates */

/* ============================================================
   LAYOUT — display, position, flex, grid
   ============================================================ */

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1 1 0%; }
.inline-flex { display: inline-flex; }
.inline-block { display: inline-block; }
.block { display: block; }
.hidden { display: none; }
.grid { display: grid; gap: var(--space-6); }

/* Flex alignment */
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-baseline { align-items: baseline; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }

/* Inset */
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-1\/2 { top: 50%; }
.-top-5 { top: -1.25rem; }
.right-0 { right: 0; }
.right-2 { right: 0.5rem; }
.-right-5 { right: -1.25rem; }
.left-2 { left: 0.5rem; }

/* Transform */
.transform { transform: translateX(0); /* enable GPU compositing */ }
.-translate-y-1\/2 { transform: translateY(-50%); }

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

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

/* ============================================================
   SIZING — width, height
   ============================================================ */

.w-full { width: 100%; }
.w-5 { width: 1.25rem; }
.w-56 { width: 14rem; }
.w-\[90vw\] { width: 90vw; }
.max-w-full { max-width: 100%; }
.max-h-full { max-height: 100%; }
.h-full { height: 100%; }
.h-64 { height: 16rem; }
.h-\[85vh\] { height: 85vh; }
.min-h-screen { min-height: 100vh; }

/* ============================================================
   SPACING — margin, padding, gap, space-*
   ============================================================ */

/* Margin — top */
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: var(--space-2); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }

/* Margin — bottom */
.mb-2 { margin-bottom: var(--space-2); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-12 { margin-bottom: var(--space-12); }
.\!mb-0 { margin-bottom: 0 !important; }

/* Margin — left / right */
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: var(--space-2); }
.mr-1 { margin-right: 0.25rem; }
.mr-1\.5 { margin-right: 0.375rem; }
.mr-2 { margin-right: var(--space-2); }
.mr-3 { margin-right: var(--space-3); }

/* Padding */
.p-4 { padding: var(--space-4); }
.px-4 { padding-left: var(--space-4); padding-right: var(--space-4); }
.px-6 { padding-left: var(--space-6); padding-right: var(--space-6); }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: var(--space-2); padding-bottom: var(--space-2); }
.py-3 { padding-top: var(--space-3); padding-bottom: var(--space-3); }
.pt-4 { padding-top: var(--space-4); }
.pt-8 { padding-top: var(--space-8); }

/* Gap */
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

/* Space between children */
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: var(--space-2); }
.space-y-4 > * + * { margin-top: var(--space-4); }

/* ============================================================
   TYPOGRAPHY — font-size, font-weight, line-height, text-align
   ============================================================ */

.text-sm { font-size: var(--text-sm); }
.text-base { font-size: var(--text-base); }
.text-lg { font-size: var(--text-lg); }
.text-xl { font-size: var(--text-xl); }
.text-2xl { font-size: var(--text-2xl); }
.text-3xl { font-size: var(--text-3xl); }
.text-4xl { font-size: var(--text-4xl); }
.text-5xl { font-size: var(--text-5xl); }
.text-6xl { font-size: var(--text-6xl); }

.font-medium { font-weight: var(--font-medium); }
.font-semibold { font-weight: var(--font-semibold); }
.font-bold { font-weight: var(--font-bold); }

.leading-relaxed { line-height: var(--leading-relaxed); }

.text-center { text-align: center; }
.text-left { text-align: left; }
.underline { text-decoration: underline; }
.list-inside { list-style-position: inside; }

/* ============================================================
   COLORS — text, background, border, opacity
   ============================================================ */

/* Text colors */
.text-white { color: #ffffff; }
.text-gray-200 { color: #e5e7eb; }
.text-gray-500 { color: var(--gray-500); }
.text-gray-600 { color: var(--gray-600); }
.text-gray-700 { color: var(--gray-700); }
.text-slate-500 { color: #64748b; }
.text-slate-700 { color: #334155; }
.text-slate-800 { color: #1e293b; }
.text-amber-400 { color: #fbbf24; }
.text-green-500 { color: #22c55e; }
.text-green-600 { color: #16a34a; }

/* Background colors */
.bg-white { background-color: #ffffff; }
.bg-black { background-color: #000000; }
.bg-gray-50 { background-color: var(--gray-50); }
.bg-slate-50 { background-color: #f8fafc; }
.bg-opacity-80 { --tw-bg-opacity: 0.8; }

/* Combined bg + opacity for the gallery modal */
.bg-black.bg-opacity-80 { background-color: rgba(0, 0, 0, 0.8); }

/* ============================================================
   BORDERS
   ============================================================ */

.border { border-width: 1px; border-style: solid; border-color: #e2e8f0; }
.border-t { border-top-width: 1px; border-top-style: solid; border-top-color: #e2e8f0; }
.border-gray-300 { border-color: var(--gray-300); }
.border-slate-200 { border-color: #e2e8f0; }
.border-green-500 { border-color: #22c55e; }

/* Border radius */
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: var(--radius-2xl); }
.rounded-b-lg { border-bottom-left-radius: var(--radius-lg); border-bottom-right-radius: var(--radius-lg); }

/* Ring (for dropdown focus) */
.ring-1 { box-shadow: 0 0 0 1px var(--tw-ring-color, rgba(0, 0, 0, 0.05)); }
.ring-black { --tw-ring-color: #000000; }
.ring-opacity-5 { --tw-ring-color: rgba(0, 0, 0, 0.05); }
.ring-1.ring-black.ring-opacity-5 { box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05); }

/* ============================================================
   SHADOWS
   ============================================================ */

.shadow { box-shadow: var(--shadow-base); }
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

/* ============================================================
   EFFECTS — opacity, cursor, transition
   ============================================================ */

.opacity-90 { opacity: 0.9; }
.cursor-pointer { cursor: pointer; }

.transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.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-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }

/* ============================================================
   Z-INDEX
   ============================================================ */

.z-10 { z-index: 10; }
.z-\[1000\] { z-index: 1000; }

/* ============================================================
   HOVER STATES
   ============================================================ */

.hover\:bg-gray-50:hover { background-color: var(--gray-50); }
.hover\:bg-gray-100:hover { background-color: var(--gray-100); }
.hover\:bg-slate-100:hover { background-color: #f1f5f9; }
.hover\:bg-green-500:hover { background-color: #22c55e; }
.hover\:text-white:hover { color: #ffffff; }
.hover\:shadow-md:hover { box-shadow: var(--shadow-md); }

/* ============================================================
   FOCUS STATES
   ============================================================ */

.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }

/* ============================================================
   RESPONSIVE — sm (640px)
   ============================================================ */

@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .sm\:space-x-4 > * + * { margin-left: var(--space-4); }
  .sm\:space-y-0 > * + * { margin-top: 0; }
  .sm\:top-2 { top: 0.5rem; }
  .sm\:right-2 { right: 0.5rem; }
  .sm\:right-4 { right: 1rem; }
  .sm\:left-4 { left: 1rem; }
}

/* ============================================================
   RESPONSIVE — md (768px)
   ============================================================ */

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:items-start { align-items: flex-start; }
  .md\:justify-between { justify-content: space-between; }
  .md\:mt-0 { margin-top: 0; }
  .md\:pt-12 { padding-top: var(--space-12); }
  .md\:text-3xl { font-size: var(--text-3xl); }
  .md\:text-5xl { font-size: var(--text-5xl); }
  .md\:text-6xl { font-size: var(--text-6xl); }
}

/* ============================================================
   RESPONSIVE — lg (1024px)
   ============================================================ */

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

/* Breadcrumb */
/* Page Wrapper */
.page-wrapper {
  padding-top: 120px;
  padding-bottom: var(--space-16);
  min-height: 60vh;
}

.page-title {
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  color: var(--secondary);
  margin-bottom: var(--space-8);
}

/* Blog Grid (standalone page — home.css only loads on homepage) */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
}

/* Button outline variant */
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

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

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
  z-index: var(--z-modal);
  padding: var(--space-4) var(--space-6);
  display: flex;
  justify-content: center;
}
.cookie-consent-content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.cookie-consent-content p { margin: 0; font-size: var(--text-sm); color: var(--gray-600); }
.cookie-consent-actions { display: flex; align-items: center; gap: var(--space-3); }
.cookie-consent-link { font-size: var(--text-sm); color: var(--gray-500); text-decoration: underline; }

/* Animate on scroll */
[data-animate] { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-animate].animated { opacity: 1; transform: translateY(0); }

/* Breadcrumb */
.breadcrumb-nav { padding: var(--space-4) 0; max-width: 1200px; margin: 0 auto; padding-left: var(--space-6); padding-right: var(--space-6); }
.breadcrumb-list { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-2); list-style: none; padding: 0; margin: 0; font-size: var(--text-sm); }
.breadcrumb-link { color: var(--gray-500); text-decoration: none; transition: color var(--transition-base); }
.breadcrumb-link:hover { color: var(--primary); }
.breadcrumb-current { color: var(--gray-700); font-weight: var(--font-medium); }
.breadcrumb-separator { color: var(--gray-400); }

