/* Base styles and variables */
:root {
  --background: #f8f9fa;
  --foreground: #1a2b35;
  --card: #ffffff;
  --card-foreground: #1a2b35;
  --popover: #ffffff;
  --popover-foreground: #1a2b35;
  --primary: #00a896;
  --primary-foreground: #ffffff;
  --secondary: #f0f7f9;
  --secondary-foreground: #1a2b35;
  --muted: #f2f5f7;
  --muted-foreground: #5a6d78;
  --accent: #f9c80e;
  --accent-foreground: #1a2b35;
  --destructive: #ef4444;
  --destructive-foreground: #ffffff;
  --border: #e2e8ee;
  --input: #e2e8ee;
  --ring: #00a896;
  --chart-1: #00a896;
  --chart-2: #05d9c5;
  --chart-3: #f9c80e;
  --chart-4: #f86624;
  --chart-5: #43bccd;
  --sidebar: #f1f6f8;
  --sidebar-foreground: #405962;
  --sidebar-primary: #00a896;
  --sidebar-primary-foreground: #ffffff;
  --sidebar-accent: #e5f1f5;
  --sidebar-accent-foreground: #00a896;
  --sidebar-border: #d5e4ea;
  --sidebar-ring: #00a896;
  --bg-gradient-start: #05d9c5;
  --bg-gradient-end: #00a896;
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-heading: "Outfit", ui-sans-serif, system-system, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --radius-lg: 1rem;
  --radius-md: calc(1rem - 2px);
  --radius-sm: calc(1rem - 4px);
  --whatsapp: #25D366;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.25);
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

/* Floating Elements - Enhanced */
.floating-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  opacity: 0.15;
  filter: blur(40px);
  animation: float 15s infinite ease-in-out;
  will-change: transform;
}

.floating-element-1 {
  width: 250px;
  height: 250px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
  background: linear-gradient(135deg, #00a896, #05d9c5);
}

.floating-element-2 {
  width: 180px;
  height: 180px;
  top: 60%;
  left: 80%;
  animation-delay: 2s;
  background: linear-gradient(135deg, #f9c80e, #f86624);
}

.floating-element-3 {
  width: 300px;
  height: 300px;
  top: 70%;
  left: 15%;
  animation-delay: 4s;
  background: linear-gradient(135deg, #43bccd, #00a896);
}

.floating-element-4 {
  width: 200px;
  height: 200px;
  top: 30%;
  left: 70%;
  animation-delay: 6s;
  background: linear-gradient(135deg, #05d9c5, #f9c80e);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--foreground);
  font-weight: 700;
}

h1 {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2rem;
  letter-spacing: -0.015em;
}

h3 {
  font-size: 1.5rem;
  letter-spacing: -0.01em;
}

p {
  color: var(--foreground);
  line-height: 1.6;
}

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

a:hover {
  text-decoration: underline;
}

/* Utility classes */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }
}

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

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

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

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

.text-white {
  color: white;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  font-size: 1.05rem;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-md);
  transform: translateY(0);
  z-index: 1;
  touch-action: manipulation;
  min-height: 44px; /* Minimum touch target size */
  min-width: 44px; /* Minimum touch target size */
}

@media (max-width: 768px) {
  .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    min-height: 48px;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    min-height: 44px;
  }
}

.btn::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;
  z-index: -1;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-sm);
  background: inherit;
  z-index: -1;
  transition: all 0.3s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #008f7f);
  color: var(--primary-foreground);
  box-shadow: 0 6px 12px rgba(0, 168, 150, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #008f7f, #007a6d);
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 168, 150, 0.5);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  box-shadow: 0 4px 8px rgba(0, 168, 150, 0.2);
}

.btn-outline:hover {
  background: linear-gradient(135deg, var(--primary), #008f7f);
  color: var(--primary-foreground);
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 168, 150, 0.3);
  border-color: transparent;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  box-shadow: 0 6px 12px rgba(37, 211, 102, 0.4);
  animation: pulse 2s infinite;
  border: none;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #128C7E, #075E54);
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.5);
  animation: none;
}

.btn-whatsapp:active {
  transform: translateY(0);
  box-shadow: 0 4px 8px rgba(37, 211, 102, 0.3);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Animations */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    transform: scale(1.02);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px) translateX(0px) scale(1);
  }
  25% {
    transform: translateY(-25px) translateX(15px) scale(1.05);
  }
  50% {
    transform: translateY(-15px) translateX(0px) scale(1.1);
  }
  75% {
    transform: translateY(-10px) translateX(-15px) scale(1.05);
  }
  100% {
    transform: translateY(0px) translateX(0px) scale(1);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes wobble {
  0% {
    transform: translateX(0%);
  }
  15% {
    transform: translateX(-5%) rotate(-2deg);
  }
  30% {
    transform: translateX(4%) rotate(2deg);
  }
  45% {
    transform: translateX(-3%) rotate(-1.5deg);
  }
  60% {
    transform: translateX(2%) rotate(1deg);
  }
  75% {
    transform: translateX(-1%) rotate(-0.5deg);
  }
  100% {
    transform: translateX(0%);
  }
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.1);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.1);
  }
  70% {
    transform: scale(1);
  }
}

@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes tada {
  0% {
    transform: scale(1);
  }
  10%, 20% {
    transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}

@keyframes rubberBand {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scaleX(1.25) scaleY(0.75);
  }
  40% {
    transform: scaleX(0.75) scaleY(1.25);
  }
  60% {
    transform: scaleX(1.15) scaleY(0.85);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes flip {
  from {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rollInFromLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes rollInFromRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes rollInFromTop {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0) rotate3d(1, 0, 0, -120deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes rollInFromBottom {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0) rotate3d(1, 0, 0, 120deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes shine {
  0% {
    transform: rotate(45deg) translateX(-100%);
  }
  100% {
    transform: rotate(45deg) translateX(100%);
  }
}

/* Header styles */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  border-bottom: 1px solid rgba(226, 232, 238, 0.5);
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(15px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.header.scrolled {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background-color: rgba(255, 255, 255, 0.99);
  transform: translateY(-2px);
}

.header-container {
  display: flex;
  height: 5rem;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.logo::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

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

.logo:hover::before {
  opacity: 0.1;
}

.logo-img {
  width: 3rem;
  height: 3rem;
  border-radius: 0.875rem;
  object-fit: contain;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.logo:hover .logo-img {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.logo-text {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--foreground);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-subtext {
  font-size: 0.85rem;
  color: var(--muted-foreground);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.nav-desktop {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(26, 43, 53, 0.85);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 0.5rem 0.9rem;
  border-radius: 0.875rem;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  backdrop-filter: blur(10px);
  border: 1px solid transparent;
}

.nav-icon {
  transition: all 0.4s ease;
  opacity: 0.7;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 168, 150, 0.08), rgba(249, 200, 14, 0.08));
  border-radius: 1rem;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: -1;
}

.nav-link:hover {
  color: var(--primary);
  transform: translateY(-2px);
  border-color: rgba(0, 168, 150, 0.2);
  box-shadow: 0 4px 12px rgba(0, 168, 150, 0.15);
}

.nav-link:hover::before {
  opacity: 1;
}

.nav-link:hover .nav-icon {
  opacity: 1;
  transform: scale(1.1);
}

.nav-link.active {
  color: var(--primary);
  font-weight: 700;
  background: linear-gradient(135deg, rgba(0, 168, 150, 0.12), rgba(249, 200, 14, 0.12));
  border-color: rgba(0, 168, 150, 0.3);
  box-shadow: 0 4px 12px rgba(0, 168, 150, 0.2);
}

.nav-link.active .nav-icon {
  opacity: 1;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px 3px 0 0;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-outline.btn-sm,
.btn-primary.btn-sm {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline.btn-sm {
  border-width: 2px;
  border-color: rgba(0, 168, 150, 0.3);
  color: var(--primary);
  background: rgba(0, 168, 150, 0.05);
}

.btn-outline.btn-sm:hover {
  border-color: var(--primary);
  background: rgba(0, 168, 150, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 168, 150, 0.2);
}

.btn-primary.btn-sm {
  background: linear-gradient(135deg, var(--primary), #05d9c5);
  box-shadow: 0 4px 12px rgba(0, 168, 150, 0.25);
}

.btn-primary.btn-sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 168, 150, 0.35);
}

.btn-whatsapp-nav {
  position: relative;
  overflow: hidden;
}

.btn-whatsapp-nav::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-whatsapp-nav:hover::before {
  width: 300px;
  height: 300px;
}

.btn svg {
  transition: transform 0.3s ease;
}

.btn:hover svg {
  transform: scale(1.1);
}

.mobile-menu-btn {
  padding: 0.65rem;
  border-radius: 0.75rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: none;
  background: linear-gradient(135deg, rgba(0, 168, 150, 0.25), rgba(249, 200, 14, 0.25));
  border: 1px solid rgba(0, 168, 150, 0.4);
  margin-left: 1rem;
  cursor: pointer;
  min-width: 44px; /* Minimum touch target size */
  min-height: 44px; /* Minimum touch target size */
  align-items: center;
  justify-content: center;
}

.mobile-menu-btn:hover {
  background: linear-gradient(135deg, rgba(0, 168, 150, 0.35), rgba(249, 200, 14, 0.35));
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 168, 150, 0.3);
}

.mobile-menu-btn svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
}

.mobile-menu-btn:active {
  transform: scale(0.95);
}

/* Ensure mobile menu button is visible and properly sized on mobile */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
    padding: 0.5rem;
    margin-left: 0.75rem;
  }
  
  .mobile-menu-btn svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}

/* Mobile menu */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 150;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

/* Ensure mobile menu is only visible on small screens */
@media (min-width: 769px) {
  .mobile-menu-overlay {
    display: none !important;
  }
}

/* Compact mobile menu styling for smaller screens */
@media (max-width: 768px) {
  .mobile-menu-panel {
    max-height: 70vh;
  }
  
  .mobile-menu-header {
    padding: 0.75rem 1rem;
  }
  
  .mobile-menu-logo-img {
    width: 1.75rem;
    height: 1.75rem;
  }
  
  .mobile-menu-logo-text {
    font-size: 1rem;
    font-weight: 600;
  }
  
  .mobile-menu-close {
    padding: 0.25rem;
  }
  
  .mobile-menu-close svg {
    width: 1.25rem;
    height: 1.25rem;
  }
  
  .mobile-nav-link {
    padding: 0.75rem;
    font-size: 1rem;
    margin-bottom: 0.15rem;
    border-radius: 0.375rem;
  }
}

/* Ensure mobile menu is hidden by default on desktop */
.mobile-menu-overlay {
  display: none;
}

.mobile-menu-overlay.active {
  display: block;
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 151;
}

.mobile-menu-panel {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  border: 1px solid var(--border);
  box-shadow: 0 15px 40px -5px rgba(0, 0, 0, 0.2);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow-y: auto;
  border-radius: 0 0 1.5rem 1.5rem;
  max-height: 90vh;
  z-index: 152;
}

.mobile-menu-overlay.active .mobile-menu-panel {
  transform: translateY(0);
}

/* Ensure mobile menu is properly positioned on small screens */
@media (max-width: 768px) {
  .mobile-menu-panel {
    max-height: 100vh;
    border-radius: 0 0 1rem 1rem;
    max-width: 100%;
  }
  
  .mobile-menu-header {
    padding: 1rem;
  }
  
  .mobile-menu-logo-img {
    width: 2rem;
    height: 2rem;
  }
  
  .mobile-menu-logo-text {
    font-size: 1.1rem;
  }
  
  .mobile-menu-close {
    padding: 0.4rem;
  }
  
  .mobile-menu-close svg {
    width: 1.2rem;
    height: 1.2rem;
  }
  
  /* Make mobile menu more compact */
  .mobile-menu-nav {
    padding: 0.5rem;
  }
  
  .mobile-nav-link {
    padding: 0.85rem 1rem;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    border-radius: 0.5rem;
  }
}

/* Ensure mobile menu doesn't interfere with desktop layout */
@media (min-width: 769px) {
  .mobile-menu-overlay,
  .mobile-menu-panel {
    display: none !important;
  }
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg, rgba(0, 168, 150, 0.1), rgba(249, 200, 14, 0.1));
}

.mobile-menu-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-menu-logo-img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
}

.mobile-menu-logo-text {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--foreground);
  letter-spacing: -0.2px;
}

.mobile-menu-close {
  background: none;
  border: none;
  padding: 0.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: rgba(0, 168, 150, 0.1);
  transform: scale(1.1);
}

.mobile-menu-close svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.mobile-menu-nav {
  padding: 1rem 1.5rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  border-radius: 0.75rem;
  text-align: left;
  font-weight: 600;
  margin-bottom: 0.75rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: linear-gradient(90deg, rgba(0, 168, 150, 0.05), rgba(249, 200, 14, 0.05));
  border: 1px solid rgba(0, 168, 150, 0.1);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-height: 44px; /* Minimum touch target size */
}

.mobile-nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.mobile-nav-link:hover {
  background: linear-gradient(90deg, rgba(0, 168, 150, 0.15), rgba(249, 200, 14, 0.15));
  transform: translateX(8px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 168, 150, 0.3);
}

.mobile-nav-link:hover::before {
  opacity: 0.1;
}

.mobile-nav-link.active {
  background: linear-gradient(90deg, rgba(0, 168, 150, 0.25), rgba(249, 200, 14, 0.25));
  color: var(--primary);
  font-weight: 700;
  border-color: var(--primary);
  box-shadow: 0 8px 25px rgba(0, 168, 150, 0.2);
}

.mobile-nav-link span {
  position: relative;
  z-index: 2;
}

.mobile-nav-link svg {
  width: 1.2rem;
  height: 1.2rem;
  color: var(--primary);
  position: relative;
  z-index: 2;
}

/* Optimize mobile nav links for smaller screens */
@media (max-width: 768px) {
  .mobile-nav-link {
    padding: 1rem;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    border-radius: 0.6rem;
  }
  
  .mobile-menu-nav {
    padding: 0.75rem;
  }
  
  .mobile-cta {
    padding: 1rem;
    gap: 0.5rem;
  }
  
  .mobile-cta .btn {
    padding: 0.9rem;
    font-size: 1rem;
    border-radius: 0.6rem;
  }
}

/* Ensure mobile menu is compact and only shows essential items */
@media (max-width: 768px) {
  .mobile-menu-panel {
    max-height: 80vh;
  }
  
  .mobile-menu-nav {
    padding: 0.5rem;
  }
  
  .mobile-nav-link {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    border-radius: 0.5rem;
  }
  
  /* Compact mobile menu styling */
  .mobile-menu-panel {
    max-height: 70vh;
  }
  
  .mobile-menu-header {
    padding: 0.75rem 1rem;
  }
  
  .mobile-menu-logo-img {
    width: 1.75rem;
    height: 1.75rem;
  }
  
  .mobile-menu-logo-text {
    font-size: 1rem;
    font-weight: 600;
  }
  
  .mobile-menu-close {
    padding: 0.25rem;
  }
  
  .mobile-menu-close svg {
    width: 1.25rem;
    height: 1.25rem;
  }
  
  .mobile-nav-link {
    padding: 0.75rem;
    font-size: 1rem;
    margin-bottom: 0.15rem;
    border-radius: 0.375rem;
  }
}

.mobile-cta {
  padding: 1.5rem 1.5rem 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: linear-gradient(90deg, rgba(0, 168, 150, 0.03), rgba(249, 200, 14, 0.03));
}

.mobile-cta .btn {
  width: 100%;
  justify-content: center;
  font-weight: 600;
  padding: 1.1rem 1.5rem;
  font-size: 1.1rem;
  border-radius: 0.75rem;
  min-height: 44px; /* Minimum touch target size */
}

.mobile-cta .btn-outline {
  border-width: 2px;
}

.mobile-cta .btn-whatsapp {
  animation: pulse 2s infinite;
}

.mobile-cta .btn:active {
  transform: scale(0.98);
}

/* Hero section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  perspective: 1000px;
  animation: zoomIn 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: translateZ(-50px) scale(1.1);
  animation: imagePan 20s infinite alternate;
  filter: brightness(0.7) saturate(1.2);
  transition: transform 0.5s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
  backdrop-filter: blur(2px);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 64rem;
  padding: 0 2rem;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--accent), #ff9e00);
  color: #1a2b35;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(249, 200, 14, 0.4);
  animation: float 3s ease-in-out infinite, pulse 2s infinite;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.badge::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

.badge svg {
  margin-right: 0.75rem;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.2));
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.5px;
  animation: slideInLeft 1s ease-out;
}

.hero-title-gradient {
  background: linear-gradient(135deg, white, var(--accent), #ffeb3b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: slideInLeft 1s ease-out;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 2rem;
  font-weight: 800;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
  animation: slideInRight 1s ease-out 0.3s both;
  letter-spacing: 1px;
}

.hero-description {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  line-height: 1.7;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.9s both;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  z-index: 3;
}

.scroll-indicator-inner {
  width: 2.5rem;
  height: 3.5rem;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.scroll-indicator-dot {
  width: 0.75rem;
  height: 0.75rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 9999px;
  margin-top: 0.75rem;
  animation: scrollBounce 2s infinite;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-15px);
  }
  60% {
    transform: translateX(-50%) translateY(-7px);
  }
}

@keyframes scrollBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(5px);
  }
  60% {
    transform: translateY(2px);
  }
}

@keyframes imagePan {
  0% {
    transform: translateZ(-50px) scale(1.1) translate(0, 0);
  }
  25% {
    transform: translateZ(-50px) scale(1.1) translate(-1%, -1%);
  }
  50% {
    transform: translateZ(-50px) scale(1.1) translate(1%, 1%);
  }
  75% {
    transform: translateZ(-50px) scale(1.1) translate(1%, -1%);
  }
  100% {
    transform: translateZ(-50px) scale(1.1) translate(-1%, 1%);
  }
}

@keyframes shine {
  0% {
    transform: rotate(45deg) translateX(-100%);
  }
  100% {
    transform: rotate(45deg) translateX(100%);
  }
}

/* Homepage specific styles */
.homepage .hero {
  background-attachment: fixed;
}

.homepage .hero-img {
  filter: brightness(0.8);
}

.homepage .hero-title {
  font-size: 3.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.homepage .hero-subtitle {
  font-size: 2.5rem;
  animation: pulse 2s infinite;
}

.homepage .badge {
  background: linear-gradient(90deg, #f9c80e, #00a896);
  color: white;
  animation: float 2s ease-in-out infinite;
}

/* About page specific styles */
.about-page .hero {
  height: 80vh;
  min-height: 500px;
}

.about-page .hero-title {
  font-size: 3rem;
}

.about-page .hero-subtitle {
  font-size: 2rem;
  color: white;
}

.about-page .badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  backdrop-filter: blur(5px);
}

/* Contact page specific styles */
.contact-page .section-title {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.contact-page .section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px;
}

.contact-page .section-description {
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto;
}

/* Journey section */
.journey {
  padding: 8rem 0;
  margin: 4rem 0;
  background: linear-gradient(180deg, var(--background), rgba(248, 249, 250, 0.7));
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out;
}

.journey-bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
}

.journey-bg-circle-1 {
  position: absolute;
  top: 5rem;
  left: 5rem;
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle, var(--primary), transparent 70%);
  border-radius: 9999px;
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
  opacity: 0.3;
}

.journey-bg-circle-2 {
  position: absolute;
  bottom: 5rem;
  right: 5rem;
  width: 26rem;
  height: 26rem;
  background: radial-gradient(circle, var(--accent), transparent 70%);
  border-radius: 9999px;
  filter: blur(80px);
  animation: float 10s ease-in-out infinite reverse;
  opacity: 0.3;
}

.journey-container {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.journey-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out;
}

.journey-badge {
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, rgba(0, 168, 150, 0.3), rgba(249, 200, 14, 0.3));
  color: var(--primary);
  border: 1px solid rgba(0, 168, 150, 0.4);
  padding: 0.85rem 2.2rem;
  font-size: 1.25rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.journey-badge::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

.journey-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--foreground), #00a896);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.journey-description {
  font-size: 1.3rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  max-width: 48rem;
  margin: 0 auto;
  font-weight: 400;
}

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

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

@media (min-width: 1024px) {
  .journey-phases {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .journey-phase {
    transform: none !important;
  }
  
  .journey-phase:hover {
    transform: none !important;
  }
  
  .journey-phases {
    gap: 1.25rem;
  }
}

.journey-phase {
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  transform-style: preserve-3d;
  perspective: 1000px;
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
  touch-action: manipulation;
}

.journey-phase:nth-child(1) { animation-delay: 0.1s; }
.journey-phase:nth-child(2) { animation-delay: 0.2s; }
.journey-phase:nth-child(3) { animation-delay: 0.3s; }
.journey-phase:nth-child(4) { animation-delay: 0.4s; }

.journey-phase:hover {
  transform: translateY(-15px) rotateY(5deg) scale(1.03);
}

.journey-card {
  height: 100%;
  border: 2px solid var(--border);
  border-radius: 1.5rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 2rem;
  background: white;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  transform: translateZ(0);
  position: relative;
  overflow: hidden;
  touch-action: manipulation;
}

@media (max-width: 768px) {
  .journey-card {
    padding: 1.5rem;
  }
}

.journey-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 168, 150, 0.03), rgba(249, 200, 14, 0.03));
  z-index: -1;
}

.journey-card.selected {
  border-color: var(--primary);
  box-shadow: 0 25px 50px rgba(0, 168, 150, 0.25);
  background: linear-gradient(135deg, rgba(0, 168, 150, 0.08), rgba(249, 200, 14, 0.08));
  transform: translateY(-8px);
  border-width: 3px;
}

.journey-card.selected .phase-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  box-shadow: 0 15px 30px rgba(0, 168, 150, 0.4);
  transform: scale(1.15);
}

.journey-card:hover {
  border-color: rgba(0, 168, 150, 0.7);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
}

.phase-icon {
  width: 6rem;
  height: 6rem;
  margin: 0 auto 1.5rem;
  border-radius: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, var(--muted), #e0e7eb);
  color: var(--muted-foreground);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .phase-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.25rem;
  }
}

.phase-icon::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  transition: transform 0.6s;
}

.journey-card:hover .phase-icon::after {
  transform: rotate(45deg) translate(100%, 100%);
}

.phase-badge {
  margin-bottom: 1.2rem;
  padding: 0.6rem 1.2rem;
  border-radius: 9999px;
  font-size: 0.95rem;
  font-weight: 700;
  display: inline-block;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .phase-badge {
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}

.journey-card.selected .phase-badge {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: white;
  box-shadow: 0 6px 12px rgba(0, 168, 150, 0.3);
  transform: scale(1.05);
}

.phase-badge-default {
  background: linear-gradient(90deg, var(--muted), #dce5ea);
  color: var(--muted-foreground);
}

.phase-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  text-align: center;
  color: var(--foreground);
  transition: color 0.3s ease;
}

@media (max-width: 768px) {
  .phase-title {
    font-size: 1.15rem;
    margin-bottom: 1rem;
  }
}

.journey-card:hover .phase-title {
  color: var(--primary);
}

.phase-description {
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  padding: 0 0.75rem;
  font-weight: 400;
}

@media (max-width: 768px) {
  .phase-description {
    font-size: 0.9rem;
    padding: 0 0.25rem;
  }
}

.phase-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

@media (max-width: 768px) {
  .phase-title {
    font-size: 1.1rem;
  }
}

.phase-description {
  color: var(--muted-foreground);
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: center;
  padding: 0 0.5rem;
}

@media (max-width: 768px) {
  .phase-description {
    font-size: 0.85rem;
  }
}

.journey-detail {
  position: relative;
  height: 28rem;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.4);
  margin-top: 2.5rem;
  transform: translateZ(0);
  animation: fadeInUp 1s ease-out;
  border: 3px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 640px) {
  .journey-detail {
    height: 36rem;
  }
}

@media (min-width: 1024px) {
  .journey-detail {
    height: 42rem;
  }
}

.journey-detail-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: brightness(0.8) contrast(1.1);
}

.journey-detail:hover .journey-detail-img {
  transform: scale(1.1);
  filter: brightness(0.9) contrast(1.05);
}

.journey-detail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  opacity: 0.9;
  backdrop-filter: blur(5px);
}

.journey-detail-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 2.5rem;
  z-index: 2;
  backdrop-filter: blur(2px);
}

.journey-detail-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1.75rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.5px;
  animation: slideInLeft 1s ease-out;
}

@media (min-width: 640px) {
  .journey-detail-title {
    font-size: 2.75rem;
  }
}

@media (min-width: 768px) {
  .journey-detail-title {
    font-size: 3.25rem;
  }
}

@media (min-width: 1024px) {
  .journey-detail-title {
    font-size: 3.75rem;
  }
}

.journey-detail-description {
  font-size: 1.35rem;
  line-height: 1.7;
  max-width: 50rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  font-weight: 400;
  animation: slideInRight 1s ease-out 0.3s both;
}

@media (min-width: 640px) {
  .journey-detail-description {
    font-size: 1.6rem;
  }
}

@media (min-width: 768px) {
  .journey-detail-description {
    font-size: 1.85rem;
  }
}

@media (min-width: 1024px) {
  .journey-detail-description {
    font-size: 2.1rem;
  }
}

/* Contact packages section */
.contact-packages {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(248, 249, 250, 0.7), var(--background));
}

.contact-packages-bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-size: 50rem;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-packages-container {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact-packages-header {
  text-align: center;
  margin-bottom: 5rem;
}

.contact-packages-badge {
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, rgba(249, 200, 14, 0.2), rgba(0, 168, 150, 0.2));
  color: var(--accent-foreground);
  border: 1px solid rgba(249, 200, 14, 0.3);
  padding: 0.75rem 2rem;
  font-size: 1.2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-packages-title {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
}

.contact-packages-title-gradient {
  background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-packages-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  max-width: 64rem;
  margin: 0 auto 3rem;
}

.contact-card {
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateZ(0);
  position: relative;
}

.contact-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .contact-card:hover {
    transform: translateY(-8px) scale(1.01);
  }
}

.contact-card-img-container {
  position: relative;
  height: 20rem;
  overflow: hidden;
}

@media (min-width: 640px) {
  .contact-card-img-container {
    height: 22rem;
  }
}

@media (min-width: 1024px) {
  .contact-card-img-container {
    height: 24rem;
  }
}

@media (max-width: 768px) {
  .contact-card-img-container {
    height: 16rem;
  }
}

.contact-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.contact-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
}

.contact-badge-whatsapp {
  position: absolute;
  top: 2rem;
  left: 2rem;
  background-color: #25D366;
  border-radius: 50%;
  margin-right: 0.75rem;
}

@media (max-width: 768px) {
  .contact-badge-whatsapp {
    top: 1rem;
    left: 1rem;
  }
}

/* Footer styles */
.footer {
  background: linear-gradient(135deg, #008f7f, #04b8a0);
  color: white;
  padding: 5rem 0 2.5rem;
  margin-top: auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.15);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #f9c80e, #00a896, #05d9c5);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%2300a896' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.3;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-bottom: 3.5rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
}

.footer-column {
  animation: fadeInUp 0.6s ease-out;
  background: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .footer-column {
    padding: 1.5rem;
  }
}

.footer-column::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
  z-index: -1;
}

.footer-column:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
  .footer-column:hover {
    transform: translateY(-4px);
  }
}

.footer-column:nth-child(2) {
  animation-delay: 0.1s;
}

.footer-column:nth-child(3) {
  animation-delay: 0.2s;
}

.footer-column:nth-child(4) {
  animation-delay: 0.3s;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.logo-img {
  width: 3rem;
  height: 3rem;
  border-radius: 0.875rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.footer-column:hover .logo-img {
  transform: scale(1.1) rotate(5deg);
}

.logo-text {
  font-weight: 800;
  font-size: 1.75rem;
  color: #333333;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.logo-subtext {
  font-size: 0.9rem;
  color: #666666;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.footer-description {
  color: #333333;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  font-size: 1rem;
  font-weight: 400;
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
  letter-spacing: 0.5px;
  color: #00a896;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3.5rem;
  height: 4px;
  background: linear-gradient(90deg, #f9c80e, white);
  border-radius: 2px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

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

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

.footer-links a {
  color: #333333;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 1rem;
  padding: 0.35rem 0;
  position: relative;
  font-weight: 500;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #f9c80e;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  color: #00a896;
  transform: translateX(8px);
  text-decoration: none;
}

.footer-links a:hover::before {
  opacity: 1;
}

.footer-links a svg {
  margin-right: 0.75rem;
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

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

.contact-item svg {
  flex-shrink: 0;
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.25rem;
  color: #f9c80e;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.2));
}

.contact-item span {
  color: #333333;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
}

.social-links {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.social-link::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;
}

.social-link:hover::before {
  left: 100%;
}

.social-link:hover {
  background: linear-gradient(135deg, white, #f0f0f0);
  color: #00a896;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

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

.footer-copyright {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  font-weight: 500;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 500;
}

.footer-legal a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #f9c80e, white);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.footer-legal a:hover {
  color: white;
  text-decoration: none;
}

.footer-legal a:hover::after {
  width: 100%;
}

.footer-legal span {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

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

.footer-whatsapp-cta .btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 6px 12px rgba(37, 211, 102, 0.4);
  animation: pulse 2s infinite;
  border: none;
  transition: all 0.3s ease;
}

.footer-whatsapp-cta .btn-whatsapp:hover {
  background: linear-gradient(135deg, #128C7E, #075E54);
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.5);
  animation: none;
}

.footer-whatsapp-cta .btn-whatsapp:active {
  transform: translateY(0);
  box-shadow: 0 4px 8px rgba(37, 211, 102, 0.3);
}

.whatsapp-banner {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(18, 140, 126, 0.2));
  border-radius: 1rem;
  padding: 1.75rem;
  margin-top: 1.75rem;
  border: 1px solid rgba(37, 211, 102, 0.4);
  backdrop-filter: blur(15px);
  animation: pulse 3s infinite;
  position: relative;
  overflow: hidden;
}

.whatsapp-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  animation: shine 4s infinite;
}

.whatsapp-banner .footer-title {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: #00a896;
}

.whatsapp-banner .footer-description {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  color: #333333;
}

.whatsapp-banner .btn-whatsapp {
  display: inline-flex;
  margin-top: 0.75rem;
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.75rem;
}

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 4.5rem;
  height: 4.5rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.2rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  z-index: 1000;
  animation: pulse 2s infinite, float 3s ease-in-out infinite;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 3px solid white;
}

.whatsapp-float:hover {
  transform: translateY(-8px) scale(1.15);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.7);
  animation: none;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  opacity: 0.3;
  z-index: -1;
  animation: pulse 2s infinite;
  animation-delay: 0.5s;
}

.whatsapp-float svg {
  width: 2.2rem;
  height: 2.2rem;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3));
}

/* Parallax effect */
.parallax {
  perspective: 1px;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
}

.parallax-layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.parallax-back {
  transform: translateZ(-1px) scale(2);
}

.parallax-base {
  transform: translateZ(0);
}

/* Enhanced parallax effects for specific sections */
.parallax-hero {
  transform-style: preserve-3d;
  perspective: 1000px;
}

.parallax-hero .hero-img {
  transform: translateZ(-50px) scale(1.1);
  transition: transform 0.1s linear;
}

.parallax-journey .journey-bg-circle-1,
.parallax-journey .journey-bg-circle-2 {
  transform: translateZ(-0.5px);
}

.parallax-contact .contact-packages-bg {
  transform: translateZ(-0.3px);
}

/* Special Effects */
.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.neumorphic {
  background: linear-gradient(145deg, #e6e6e6, #ffffff);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1), 
              -5px -5px 15px rgba(255, 255, 255, 0.7);
  border-radius: 15px;
}

.neumorphic-inset {
  background: linear-gradient(145deg, #e6e6e6, #ffffff);
  box-shadow: inset 5px 5px 15px rgba(0, 0, 0, 0.1), 
              inset -5px -5px 15px rgba(255, 255, 255, 0.7);
  border-radius: 15px;
}

.gradient-border {
  position: relative;
  border-radius: 15px;
}

.gradient-border::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--primary), var(--accent), var(--primary));
  border-radius: 17px;
  z-index: -1;
  animation: gradientShift 3s ease infinite;
  background-size: 300% 300%;
}

.pulse-glow {
  animation: pulse 2s infinite, glow 3s infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 0 5px rgba(0, 168, 150, 0.5);
  }
  to {
    box-shadow: 0 0 20px rgba(0, 168, 150, 0.8), 0 0 30px rgba(249, 200, 14, 0.6);
  }
}

.text-glow {
  text-shadow: 0 0 10px rgba(0, 168, 150, 0.7), 0 0 20px rgba(0, 168, 150, 0.5);
}

.text-glow-accent {
  text-shadow: 0 0 10px rgba(249, 200, 14, 0.7), 0 0 20px rgba(249, 200, 14, 0.5);
}

/* Responsive styles */
@media (max-width: 768px) {
  .header-container {
    padding: 0 1rem;
  }
  
  .nav-desktop {
    display: none;
  }
  
  .nav-cta {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.5rem;
  }
  
  /* Ensure header is properly sized on mobile */
  .header {
    height: auto;
    min-height: 4rem;
  }
  
  .logo-img {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .logo-text {
    font-size: 1.25rem;
  }
  
  .logo-subtext {
    font-size: 0.75rem;
  }
  
  /* Optimize header for mobile */
  .header-container {
    height: 4rem;
  }
  
  .logo {
    gap: 0.75rem;
  }
  
  /* Ensure mobile menu is hidden by default on desktop */
  .mobile-menu-overlay {
    display: none;
  }
  
  .mobile-menu-overlay.active {
    display: block;
  }
}
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.75rem;
  }
  
  .hero-description {
    font-size: 1.2rem;
  }
  
  .journey-title, .contact-packages-title {
    font-size: 2.25rem;
  }
  
  .journey-description, .contact-packages-description {
    font-size: 1.2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .floating-element {
    width: 80px !important;
    height: 80px !important;
  }
  
  .floating-element-3 {
    width: 120px !important;
    height: 120px !important;
  }
  
  /* Improved mobile header spacing */
  .header {
    height: auto;
    min-height: 4rem;
  }
  
  .logo-img {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .logo-text {
    font-size: 1.25rem;
  }
  
  .logo-subtext {
    font-size: 0.75rem;
  }
  
  /* Mobile menu positioning */
  .header {
    position: relative;
  }
  
  .mobile-menu-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
  }
  
  /* Improved mobile menu styling */
  .mobile-menu-panel {
    border-radius: 0 0 1rem 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: none;
  }
  
  .mobile-nav-link {
    padding: 1rem;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    border-radius: 0.75rem;
  }
  
  .mobile-cta {
    padding: 1.5rem;
  }
  
  .mobile-cta .btn {
    padding: 1rem;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    border-radius: 0.75rem;
  }
  
  /* Improved mobile button styling */
  .btn {
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
    border-radius: 0.75rem;
  }
  
  .btn-sm {
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
  }
  
  /* Improved section spacing */
  .hero {
    height: 90vh;
    min-height: 500px;
  }
  
  .section-header {
    margin-bottom: 2rem;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .section-description {
    font-size: 1.15rem;
  }
  
  /* Improved card styling */
  .card {
    border-radius: 1rem;
  }
  
  .card-header {
    padding: 1.5rem;
  }
  
  .card-content {
    padding: 1.5rem;
  }
  
  /* Improved form styling */
  .form-group {
    margin-bottom: 1.25rem;
  }
  
  .form-input, .form-select, .form-textarea {
    padding: 0.85rem 1rem;
    font-size: 1rem;
    border-radius: 0.75rem;
  }
  
  /* Improved badge styling */
  .badge {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 2rem;
  }
  
  /* Improved gallery grid */
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  /* Improved journey phases */
  .journey-phases {
    gap: 1.5rem;
  }
  
  .journey-phase {
    margin-bottom: 0.5rem;
  }
  
  /* Improved contact section */
  .contact-grid {
    gap: 1.5rem;
  }

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    gap: 1.25rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .badge, .journey-badge, .contact-packages-badge {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-description {
    font-size: 1.1rem;
  }
  
  .whatsapp-float {
    width: 3.5rem;
    height: 3.5rem;
    bottom: 1.5rem;
    right: 1.5rem;
  }
  
  .whatsapp-float svg {
    width: 1.75rem;
    height: 1.75rem;
  }
  
  /* Improved mobile menu */
  .mobile-menu-panel {
    max-width: 100%;
    border-radius: 0 0 0.75rem 0.75rem;
  }
  
  .mobile-menu-nav {
    padding: 1rem 1.25rem;
  }
  
  .mobile-nav-link {
    padding: 0.85rem;
    font-size: 1rem;
  }
  
  .mobile-cta {
    padding: 1.25rem 1.25rem 0.75rem;
  }
  
  .mobile-cta .btn {
    padding: 0.75rem;
    font-size: 0.95rem;
  }
  
  /* Improved feature cards */
  .feature-card {
    padding: 1.5rem;
  }
  
  .feature-title {
    font-size: 1.25rem;
  }
  
  .feature-description {
    font-size: 1rem;
  }
  
  /* Improved journey detail */
  .journey-detail {
    height: 20rem;
  }
  
  .journey-detail-title {
    font-size: 1.75rem;
  }
  
  .journey-detail-description {
    font-size: 1.1rem;
  }
  
  /* Improved mobile spacing */
  .container {
    padding: 0 0.75rem;
  }
  
  .header-container {
    padding: 0 0.75rem;
  }
  
  /* Improved mobile forms */
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  /* Improved mobile gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  /* Improved mobile cards */
  .card {
    border-radius: 0.75rem;
  }
  
  .card-header {
    padding: 1.25rem;
  }
  
  .card-content {
    padding: 1.25rem;
  }
}

.contact-badge-whatsapp {
  position: absolute;
  top: 2rem;
  left: 2rem;
  background-color: #25D366;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: pulse 3s infinite;
}

.contact-badge-phone {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: white;
  font-weight: 800;
  font-size: 1.25rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 20px rgba(0, 168, 150, 0.3);
}

.contact-info-bottom {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
}

.contact-badge-available {
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-weight: 600;
}

.contact-info-text {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-card-content {
  padding: 2rem;
}

@media (min-width: 640px) {
  .contact-card-content {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .contact-card-content {
    padding: 3rem;
  }
}

.contact-card-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
  transition: color 0.2s ease;
}

.contact-card:hover .contact-card-title {
  color: var(--primary);
}

.contact-card-description {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.7;
  font-size: 1.1rem;
}

@media (min-width: 640px) {
  .contact-card-description {
    font-size: 1.25rem;
  }
}

.contact-benefits-title {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: 1.25rem;
}

.contact-benefits-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.contact-benefit {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: var(--muted-foreground);
}

.contact-benefit-dot {
  width: 0.75rem;
  height: 0.75rem;
  background-color: #25D366;
  border-radius: 50%;
  margin-right: 0.75rem;
}

/* Gallery styles */
.gallery {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--background), rgba(248, 249, 250, 0.7));
  position: relative;
  overflow: hidden;
}

.gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

/* Contact CTA Section */
.contact-cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, #008f7f, #04b8a0);
  position: relative;
  overflow: hidden;
  color: white;
}

.contact-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
}

.contact-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease-out;
}

.contact-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.4);
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 168, 150, 0.1), rgba(249, 200, 14, 0.1));
  z-index: -1;
}

.contact-card .section-title {
  background: linear-gradient(135deg, var(--foreground), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-card .section-description {
  color: #333333;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-size: 1.25rem;
  line-height: 1.7;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .contact-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

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

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.gallery-item {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
  touch-action: manipulation;
  border: 8px solid white;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15), 
              inset 0 0 0 1px rgba(0, 168, 150, 0.1),
              0 0 0 1px rgba(0, 0, 0, 0.05);
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-item:nth-child(8) { animation-delay: 0.8s; }

.gallery-item:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

@media (max-width: 768px) {
  .gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
  }
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  filter: brightness(0.9) contrast(1.1);
}

.gallery-item:hover .gallery-image {
  transform: scale(1.15);
  filter: brightness(1) contrast(1.05);
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 30%, transparent 60%);
  opacity: 0.6;
  transition: all 0.4s ease;
  z-index: 1;
}

.gallery-item:hover::before {
  opacity: 0.8;
  background: linear-gradient(to top, rgba(0, 168, 150, 0.6) 0%, rgba(0, 168, 150, 0.3) 30%, transparent 60%);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: white;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7), transparent);
  transform: translateY(0);
  transition: all 0.4s ease;
  z-index: 2;
}

@media (max-width: 768px) {
  .gallery-caption {
    padding: 1.25rem;
  }
}

.gallery-item:hover .gallery-caption {
  transform: translateY(-10px);
}

.gallery-caption h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .gallery-caption h3 {
    font-size: 1.15rem;
  }
}

.gallery-caption p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .gallery-caption p {
    font-size: 0.9rem;
  }
}

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

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
  }
  
  .gallery-item {
    aspect-ratio: 3/2;
  }
}

/* Uploaded image caption styling */
.uploaded-image .image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
  color: white;
  padding: 1.5rem 1rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.uploaded-image:hover .image-caption {
  opacity: 1;
  transform: translateY(0);
}

.uploaded-image {
  position: relative;
}

@media (max-width: 768px) {
  .uploaded-image .image-caption {
    opacity: 1;
    transform: translateY(0);
    font-size: 0.85rem;
    padding: 1rem 0.75rem 0.75rem;
  }
}

/* Additional styles for other sections */

/* Why Choose Us Section */
.why-choose-us {
  padding: 6rem 0;
  background: linear-gradient(180deg, rgba(248, 249, 250, 0.7), var(--background));
  position: relative;
  overflow: hidden;
}

.why-choose-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

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

.feature-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 168, 150, 0.1);
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
  touch-action: manipulation;
}

@media (max-width: 768px) {
  .feature-card {
    padding: 2rem 1.5rem;
  }
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }

.feature-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: rgba(0, 168, 150, 0.3);
}

@media (max-width: 768px) {
  .feature-card:hover {
    transform: translateY(-8px) scale(1.02);
  }
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 168, 150, 0.03), rgba(249, 200, 14, 0.03));
  z-index: -1;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover::after {
  transform: scaleX(1);
}

.feature-icon {
  width: 5.5rem;
  height: 5.5rem;
  margin: 0 auto 1.75rem;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .feature-icon {
    width: 4.5rem;
    height: 4.5rem;
    margin: 0 auto 1.5rem;
  }
}

.feature-icon::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  transition: transform 0.6s;
}

.feature-card:hover .feature-icon::after {
  transform: rotate(45deg) translate(100%, 100%);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .feature-card:hover .feature-icon {
    transform: scale(1.05) rotate(3deg);
  }
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--foreground);
  transition: color 0.3s ease;
}

@media (max-width: 768px) {
  .feature-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
}

.feature-card:hover .feature-title {
  color: var(--primary);
}

.feature-description {
  color: var(--muted-foreground);
  line-height: 1.7;
  font-size: 1.05rem;
  font-weight: 400;
}

@media (max-width: 768px) {
  .feature-description {
    font-size: 1rem;
  }
}

/* Section Headers */
.section-header {
  margin-bottom: 3rem;
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, var(--foreground), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.5px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}

.section-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section-description {
    font-size: 1.1rem;
  }
}

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

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

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

/* Contact page styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3.5rem;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card {
    padding: 2rem 1.5rem;
  }
  
  .feature-icon {
    width: 4.5rem;
    height: 4.5rem;
  }
}

@media (max-width: 768px) {
  .contact-grid {
    gap: 1.5rem;
    margin-top: 2rem;
  }
}

.contact-form-container {
  animation: fadeInUp 0.8s ease-out;
}

.company-details {
  animation: fadeInUp 1s ease-out;
}

.card {
  background: linear-gradient(135deg, white, #f8f9fa);
  border-radius: 1.25rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 168, 150, 0.15);
  position: relative;
  backdrop-filter: blur(10px);
  touch-action: manipulation;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 168, 150, 0.02), rgba(249, 200, 14, 0.02));
  z-index: -1;
}

.card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
  border-color: rgba(0, 168, 150, 0.4);
}

.card-header {
  padding: 1.75rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(to right, rgba(0, 168, 150, 0.08), transparent);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .card-header {
    padding: 1.5rem;
  }
}

.card-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.card-title {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: -0.2px;
}

@media (max-width: 768px) {
  .card-title {
    font-size: 1.25rem;
    gap: 0.75rem;
  }
}

.card-title svg {
  width: 1.4rem;
  height: 1.4rem;
  color: var(--primary);
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
}

@media (max-width: 768px) {
  .card-title svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.card-content {
  padding: 1.75rem;
}

@media (max-width: 768px) {
  .card-content {
    padding: 1.5rem;
  }
}

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

.form-group label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: var(--foreground);
  font-size: 1.05rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  border: 2px solid var(--border);
  background: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  transition: all 0.3s ease;
  font-weight: 400;
  touch-action: manipulation;
  min-height: 44px; /* Minimum touch target size */
}

@media (max-width: 768px) {
  .form-input, .form-select, .form-textarea {
    padding: 1.25rem 1.5rem;
    font-size: 1.1rem;
    min-height: 48px;
  }
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 168, 150, 0.2);
  background: white;
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-input, .form-select, .form-textarea, .form-checkbox input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-checkbox {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.form-checkbox input {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.25rem;
  min-height: 44px; /* Minimum touch target size */
  min-width: 44px;
  margin-right: 0.75rem;
  accent-color: var(--primary);
}

.form-checkbox label {
  font-weight: 400;
  color: var(--muted-foreground);
  line-height: 1.6;
  flex: 1;
}

@media (max-width: 768px) {
  .form-checkbox input {
    width: 1.75rem;
    height: 1.75rem;
  }
  
  .form-checkbox label {
    font-size: 1.1rem;
  }
}

.map-container {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.map-iframe {
  border: none;
  width: 100%;
  height: 300px;
}

.map-info {
  padding: 1.25rem;
  background: linear-gradient(to right, rgba(0, 168, 150, 0.05), rgba(249, 200, 14, 0.05));
  border-top: 1px solid var(--border);
}

.map-info p {
  font-weight: 600;
  color: var(--foreground);
  margin: 0;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-section {
  margin-top: 2rem;
}

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

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

.contact-item svg {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  margin-top: 0.25rem;
}

.contact-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--foreground);
}

.contact-link {
  color: var(--muted-foreground);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: var(--primary);
  text-decoration: underline;
}

.availability-info {
  margin-top: 0.5rem;
}

.availability-text {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.availability-note {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  margin: 0.25rem 0;
}

/* Social media panel */
.social-panel {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border-radius: 1.25rem 0 0 1.25rem;
  box-shadow: -8px 0 25px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-panel-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, white, #f8f9fa);
  color: var(--primary);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(0, 168, 150, 0.2);
}

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

.social-panel-link:hover::before {
  left: 100%;
}

.social-panel-link:hover {
  transform: translateX(-8px) scale(1.15);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
  color: var(--accent);
  animation: bounceIn 0.6s ease;
  border-color: var(--primary);
}

.social-panel-link svg {
  width: 1.4rem;
  height: 1.4rem;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
}

/* Single icon social panel for mobile */
.social-panel-mobile {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  z-index: 1000;
  display: none;
}

.social-panel-mobile-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #008f7f);
  color: white;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.social-panel-mobile-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.social-panel-mobile-btn:active {
  transform: scale(0.95);
}

.social-panel-mobile-content {
  position: absolute;
  bottom: 4.5rem;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 1.25rem;
  padding: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 180px;
  border: 1px solid rgba(0, 168, 150, 0.2);
}

.social-panel-mobile-content.show {
  display: flex;
  animation: fadeInUp 0.3s ease;
}

.social-panel-mobile-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  color: var(--foreground);
  font-weight: 500;
  transition: all 0.2s ease;
  text-decoration: none;
  font-size: 1.05rem;
}

.social-panel-mobile-link:hover {
  background: linear-gradient(135deg, rgba(0, 168, 150, 0.1), rgba(249, 200, 14, 0.1));
  transform: translateX(5px);
}

.social-panel-mobile-link:active {
  transform: translateX(2px);
}

.social-panel-mobile-link svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .social-panel {
    display: none;
  }
  
  .social-panel-mobile {
    display: block;
  }
  
  .footer-column {
    padding: 1.5rem;
  }
  
  .footer-title {
    font-size: 1.15rem;
  }
  
  .footer-description {
    font-size: 0.95rem;
  }
  
  /* Remove hover effects on mobile */
  .nav-link:hover,
  .btn:hover,
  .social-panel-link:hover,
  .mobile-nav-link:hover,
  .feature-card:hover,
  .journey-phase:hover,
  .journey-card:hover,
  .contact-card:hover,
  .gallery-item:hover,
  .mobile-menu-btn:hover,
  .social-panel-mobile-btn:hover {
    transform: none !important;
    box-shadow: none !important;
    animation: none !important;
  }
  
  .nav-link:hover::before,
  .btn::before,
  .social-panel-link::before,
  .mobile-nav-link::before {
    display: none !important;
  }
  
  .btn:hover::before {
    left: -100% !important;
  }
  
  .nav-link:hover,
  .social-panel-link:hover,
  .mobile-nav-link:hover {
    color: inherit !important;
    border-color: inherit !important;
  }
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  animation: pulse 2s infinite;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
  animation: none;
}

.whatsapp-float svg {
  width: 2rem;
  height: 2rem;
}

/* Enhanced navbar styles */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(26, 43, 53, 0.9);
  position: relative;
  padding: 0.85rem 1.25rem;
  border-radius: 0.75rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-transform: uppercase;
  letter-spacing: 0.75px;
  overflow: hidden;
  min-height: 44px; /* Minimum touch target size */
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.nav-link:hover {
  color: var(--primary);
  transform: translateY(-3px);
}

.nav-link:hover::before {
  opacity: 0.1;
}

.nav-link.active {
  color: var(--primary);
  font-weight: 700;
  background: linear-gradient(135deg, rgba(0, 168, 150, 0.1), rgba(249, 200, 14, 0.1));
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  transform-origin: left;
  box-shadow: 0 2px 5px rgba(0, 168, 150, 0.3);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-left: 1.5rem;
}

.btn-outline.btn-sm {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-width: 2px;
  font-size: 1.05rem;
}

.btn-primary.btn-sm {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 1.05rem;
}

.nav-whatsapp {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  padding: 0.85rem 1.75rem;
  border-radius: 2.25rem;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 6px 12px rgba(37, 211, 102, 0.4);
  animation: pulse 2s infinite;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.nav-whatsapp:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.5);
  animation: none;
}

.nav-whatsapp svg {
  width: 1.3rem;
  height: 1.3rem;
}

/* Call to Action Section */
.call-to-action {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #008f7f, #04b8a0);
  color: white;
}

.call-to-action::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
}

.call-to-action-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%2300a896' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.3;
}

.call-to-action-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, rgba(0, 143, 127, 0.9), transparent);
}

.call-to-action-gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(0, 143, 127, 0.9), transparent);
}

.call-to-action-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.call-to-action-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease-out;
  max-width: 800px;
  margin: 0 auto;
}

.call-to-action-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.4);
}

.call-to-action-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 168, 150, 0.1), rgba(249, 200, 14, 0.1));
  z-index: -1;
}

.call-to-action-badge {
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, rgba(249, 200, 14, 0.2), rgba(0, 168, 150, 0.2));
  color: var(--accent-foreground);
  border: 1px solid rgba(249, 200, 14, 0.3);
  padding: 0.75rem 2rem;
  font-size: 1.2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.call-to-action-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, var(--foreground), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.5px;
}

.call-to-action-highlight {
  color: var(--primary);
}

.call-to-action-description {
  color: #333333;
  line-height: 1.7;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-size: 1.25rem;
}

.call-to-action-buttons {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 768px) {
  .call-to-action-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .call-to-action-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

.call-to-action-benefits {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

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

.benefit-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.benefit-text {
  font-weight: 600;
  color: #333333;
}

.call-to-action-footer {
  color: var(--muted-foreground);
  font-size: 1rem;
  font-weight: 500;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .call-to-action {
    padding: 4rem 0;
  }
  
  .call-to-action-card {
    padding: 2rem;
  }
  
  .call-to-action-title {
    font-size: 2rem;
  }
  
  .call-to-action-form {
    flex-direction: column;
  }
  
  .call-to-action-form .email-input,
  .call-to-action-form .btn {
    width: 100%;
  }
  
  .call-to-action-benefits {
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-card {
    padding: 2rem;
  }
  
  .contact-card-content {
    padding: 1.5rem;
  }
  
  /* Compact mobile menu styling */
  .mobile-menu-panel {
    max-height: 70vh;
  }
  
  .mobile-menu-header {
    padding: 0.75rem 1rem;
  }
  
  .mobile-menu-logo-img {
    width: 1.75rem;
    height: 1.75rem;
  }
  
  .mobile-menu-logo-text {
    font-size: 1rem;
    font-weight: 600;
  }
  
  .mobile-menu-close {
    padding: 0.25rem;
  }
  
  .mobile-menu-close svg {
    width: 1.25rem;
    height: 1.25rem;
  }
  
  .mobile-nav-link {
    padding: 0.75rem;
    font-size: 1rem;
    margin-bottom: 0.15rem;
    border-radius: 0.375rem;
  }
  
  /* Ensure mobile menu is hidden by default on desktop */
  .mobile-menu-overlay {
    display: none;
  }
  
  .mobile-menu-overlay.active {
    display: block;
  }
}

/* Responsive Navbar Styles */

/* Hide mobile menu and hamburger by default */
.mobile-menu-btn,
.mobile-menu-dropdown,
.mobile-menu-backdrop {
  display: none;
}

/* Show desktop nav by default */
.nav-desktop,
.nav-cta {
  display: flex;
}

/* Mobile styles */
@media (max-width: 900px) {
  .nav-desktop,
  .nav-cta {
    display: none !important;
  }
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    z-index: 120;
    padding: 0.5rem;
  }
  .header-container {
    justify-content: flex-start;
    gap: 1rem;
  }
  .mobile-menu-dropdown {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    z-index: 200;
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    border-radius: 0 0 1.25rem 1.25rem;
    transform: translateY(-110%);
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
    pointer-events: none;
    opacity: 0;
  }
  .mobile-menu-dropdown.open {
    transform: translateY(0);
    pointer-events: auto;
    opacity: 1;
  }
  .mobile-menu-close {
    background: none;
    border: none;
    align-self: flex-end;
    margin-bottom: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background 0.2s;
  }
  .mobile-menu-close:focus,
  .mobile-menu-close:hover {
    background: #f3f4f6;
    outline: none;
  }
  .mobile-nav-link {
    font-size: 1.15rem;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    padding: 1rem 0;
    border-radius: 0.75rem;
    margin-bottom: 0.25rem;
    transition: background 0.2s, color 0.2s;
    outline: none;
  }
  .mobile-nav-link.active,
  .mobile-nav-link:focus,
  .mobile-nav-link:hover {
    background: linear-gradient(90deg, #00a896 0%, #f9c80e 100%);
    color: #fff;
  }
  .mobile-menu-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.18);
    z-index: 150;
    transition: opacity 0.2s;
    opacity: 0;
    pointer-events: none;
  }
  .mobile-menu-backdrop.show {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }
}

/* Ensure logo and brand always visible */
@media (max-width: 900px) {
  .logo {
    z-index: 201;
  }
}

/* Prevent body scroll when menu open */
body.menu-open {
  overflow: hidden;
}

/* ============================================
   MODERN ENHANCEMENTS - Additional Styles
   ============================================ */

/* Scroll reveal animations */
.animate-in {
  animation: fadeInUp 0.8s ease-out forwards;
}

.stagger-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Enhanced badge animation */
.fade-in-badge {
  animation: bounceIn 0.8s ease-out forwards;
}

/* Promotional Packages Box */
.promo-packages-box {
  background: linear-gradient(135deg, var(--primary) 0%, #05d9c5 100%);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.promo-packages-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: promoGlow 8s ease-in-out infinite;
}

.promo-packages-box::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(249, 200, 14, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: promoGlow 10s ease-in-out infinite reverse;
}

@keyframes promoGlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.1); }
}

.promo-box-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  padding: 2rem 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.promo-box-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.2);
}

.promo-box-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.promo-box-icon svg {
  color: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.promo-box-text {
  flex: 1;
  color: white;
}

.promo-box-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.promo-box-description {
  font-size: 1.05rem;
  opacity: 0.95;
  line-height: 1.6;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.promo-box-btn {
  flex-shrink: 0;
  background: white;
  color: var(--primary);
  padding: 1rem 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.promo-box-btn:hover {
  background: var(--accent);
  color: var(--foreground);
  transform: translateX(5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.promo-box-btn svg {
  transition: transform 0.3s ease;
}

.promo-box-btn:hover svg {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
  .promo-packages-box {
    padding: 2rem 0;
  }
  
  .promo-box-content {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }
  
  .promo-box-icon {
    width: 70px;
    height: 70px;
  }
  
  .promo-box-icon svg {
    width: 40px;
    height: 40px;
  }
  
  .promo-box-title {
    font-size: 1.4rem;
  }
  
  .promo-box-description {
    font-size: 1rem;
  }
  
  .promo-box-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Gallery item hover effects - Enhanced */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 168, 150, 0.3), 
              0 0 0 10px white,
              0 0 0 11px rgba(0, 168, 150, 0.2);
}

.gallery-image {
  transition: transform 0.4s ease;
  cursor: pointer;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

/* Feature cards enhanced */
.feature-card {
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary));
  background-size: 200% 200%;
  border-radius: 1.5rem;
  opacity: 0;
  z-index: -1;
  animation: gradientShift 3s ease infinite;
  transition: opacity 0.4s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0, 168, 150, 0.3);
}

/* Contact packages enhanced */
.contact-packages {
  position: relative;
  overflow: hidden;
}

.contact-packages::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 168, 150, 0.05), rgba(249, 200, 14, 0.05));
  z-index: 0;
}

.contact-card {
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* Call to action enhanced */
.call-to-action {
  position: relative;
  overflow: hidden;
}

.call-to-action-pattern {
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(0, 168, 150, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(249, 200, 14, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(5, 217, 197, 0.1) 0%, transparent 50%);
  animation: gradientShift 10s ease infinite;
}

.call-to-action-card {
  position: relative;
  z-index: 1;
  backdrop-filter: blur(10px);
  transition: all 0.5s ease;
}

.call-to-action-card:hover {
  transform: scale(1.01);
}

/* Section headers enhanced */
.section-header {
  position: relative;
}

.section-title {
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  animation: shimmer 2s ease-in-out infinite;
}

/* Text gradient animation */
.text-primary {
  background: linear-gradient(135deg, var(--primary), #05d9c5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 3s ease infinite;
  background-size: 200% 200%;
}

/* Smooth transitions for all interactive elements */
* {
  scroll-behavior: smooth;
}

/* Enhanced shadows on scroll */
@media (prefers-reduced-motion: no-preference) {
  .journey-card,
  .feature-card,
  .gallery-item,
  .contact-card {
    will-change: transform;
  }
}

/* Glassmorphism effects */
.badge {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Enhanced button ripple effect */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:active::after {
  width: 300px;
  height: 300px;
}

/* Smooth page transitions */
@keyframes pageLoad {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

main {
  animation: pageLoad 0.6s ease-out;
}

/* Enhanced hover states for links */
.footer-links a,
.nav-link {
  position: relative;
  transition: all 0.3s ease;
}

.footer-links a::after,
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.3s ease;
}

.footer-links a:hover::after,
.nav-link:hover::after {
  width: 100%;
}

/* Parallax container */
.parallax-container {
  transform-style: preserve-3d;
  perspective: 1000px;
}

/* Glow effect on hover */
.btn-whatsapp,
.btn-primary {
  position: relative;
}

.btn-whatsapp::before,
.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: translate(-50%, -50%);
  filter: blur(20px);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -2;
}

.btn-whatsapp:hover::before,
.btn-primary:hover::before {
  opacity: 0.7;
}

/* Responsive enhancements */
@media (max-width: 768px) {
  .gallery-item:hover {
    transform: scale(1.02) translateY(-5px);
  }
  
  .feature-card:hover {
    transform: translateY(-10px) scale(1.02);
  }
  
  /* Disable 3D transforms on mobile for better performance */
  .journey-card,
  .feature-card,
  .contact-card {
    transform-style: flat !important;
    perspective: none !important;
  }
}

/* ============================================
   SPACING & LAYOUT IMPROVEMENTS
   ============================================ */

/* Section spacing standardization */
section {
  padding: 6rem 0;
  margin: 0;
}

section + section {
  margin-top: 0;
}

/* Container improvements */
.container {
  padding-left: 3rem;
  padding-right: 3rem;
}

@media (max-width: 1200px) {
  .container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  section {
    padding: 4rem 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  section {
    padding: 3rem 0;
  }
}

/* Section headers spacing */
.section-header {
  margin-bottom: 4rem;
  padding: 0 1rem;
}

.section-title {
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-description {
  margin-top: 1.5rem;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Badge spacing */
.badge {
  margin-bottom: 1.5rem;
  padding: 0.75rem 1.5rem;
  display: inline-block;
}

/* Journey section spacing improvements */
.journey {
  padding: 8rem 0;
  margin: 0;
}

.journey-header {
  margin-bottom: 5rem;
  padding: 0 2rem;
}

.journey-title {
  margin-bottom: 2rem;
  line-height: 1.2;
}

.journey-description {
  margin-top: 2rem;
  padding: 0 1rem;
}

.journey-phases {
  margin-bottom: 5rem;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .journey-phases {
    gap: 3rem;
  }
}

.journey-card {
  padding: 2.5rem;
}

.phase-icon {
  margin-bottom: 2rem;
}

.phase-badge {
  margin-bottom: 1.5rem;
}

.phase-title {
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.phase-description {
  line-height: 1.7;
  margin-top: 1rem;
}

.journey-detail {
  margin-top: 5rem;
}

/* Gallery section spacing */
.gallery {
  padding: 8rem 0;
  background: white;
}

.gallery-grid {
  display: grid;
  gap: 2.5rem;
  margin-top: 4rem;
}

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

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

@media (min-width: 1280px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
}

.gallery-item {
  margin-bottom: 0;
}

/* Features/Why Choose Us section spacing */
.why-choose-us,
.features-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, #ffffff, #f8f9fa);
}

.features-grid {
  display: grid;
  gap: 3rem;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

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

.feature-card {
  padding: 3rem 2.5rem;
  border-radius: 1.5rem;
  background: white;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 5rem;
  height: 5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.25rem;
}

.feature-title {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  line-height: 1.3;
}

.feature-description {
  line-height: 1.8;
  color: var(--muted-foreground);
}

/* Contact packages section spacing */
.contact-packages {
  padding: 8rem 0;
  background: linear-gradient(135deg, rgba(0, 168, 150, 0.03), rgba(249, 200, 14, 0.03));
}

.contact-packages-header {
  margin-bottom: 4rem;
  text-align: center;
  padding: 0 2rem;
}

.contact-packages-title {
  margin-bottom: 2rem;
  line-height: 1.2;
}

.contact-packages-description {
  margin-top: 2rem;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-card {
  margin-top: 3rem;
  border-radius: 2rem;
  overflow: hidden;
  background: white;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.contact-card-content {
  padding: 3.5rem 3rem;
}

.contact-card-title {
  margin-bottom: 2rem;
  font-size: 2rem;
  line-height: 1.3;
}

.contact-card-description {
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.contact-benefits-title {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.contact-benefits-list {
  margin-bottom: 3rem;
}

.contact-benefit {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Call to action section spacing */
.call-to-action {
  padding: 8rem 0;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.call-to-action-card {
  padding: 4rem 3rem;
  border-radius: 2rem;
  background: white;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.call-to-action-title {
  margin-bottom: 2rem;
  font-size: 2.5rem;
  line-height: 1.2;
}

.call-to-action-description {
  margin-bottom: 3rem;
  line-height: 1.8;
  font-size: 1.15rem;
}

.call-to-action-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.call-to-action-benefits {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

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

/* Contact CTA section spacing */
.contact-cta {
  padding: 8rem 0;
  background: white;
}

.contact-cta .contact-card {
  padding: 4rem 3rem;
  text-align: center;
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(0, 168, 150, 0.05), rgba(249, 200, 14, 0.05));
  border: 2px solid var(--border);
}

.contact-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

/* Footer - Creative Design */
.footer {
  position: relative;
  background: linear-gradient(180deg, #0f1a22, #1a2b35, #0a1419);
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0;
  padding: 0;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 168, 150, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(249, 200, 14, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.footer-wave {
  position: relative;
  width: 100%;
  height: 120px;
  margin-bottom: -1px;
}

.footer-wave svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: rgba(255, 255, 255, 0.05);
}

.footer-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 3rem 3rem;
  text-align: center;
  z-index: 1;
}

/* Footer Brand Section */
.footer-brand {
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out;
}

.footer-logo-img {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 168, 150, 0.3);
  transition: transform 0.3s ease;
}

.footer-logo-img:hover {
  transform: scale(1.1) rotate(5deg);
}

.footer-brand-name {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #00a896, #f9c80e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.5px;
}

.footer-tagline {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.footer-intro {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

/* Footer Divider */
.footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  margin: 2.5rem 0;
}

/* Footer Contact Info */
.footer-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.footer-contact-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-contact-info:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

.footer-contact-info svg {
  flex-shrink: 0;
  color: var(--primary);
}

/* Footer Navigation */
.footer-navigation {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
}

.footer-nav-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.footer-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.footer-nav-link:hover {
  color: var(--primary);
  text-decoration: none;
}

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

.footer-separator {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

/* Footer Social */
.footer-social {
  margin-bottom: 1rem;
}

.footer-social-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.footer-social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-social-link {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.footer-social-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 50%;
}

.footer-social-link:hover::before {
  opacity: 1;
}

.footer-social-link svg {
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.footer-social-link:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 30px rgba(0, 168, 150, 0.4);
}

.footer-social-link:hover svg {
  color: white;
  transform: rotate(360deg);
}

.footer-social-link-whatsapp:hover {
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.footer-social-link-whatsapp::before {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

/* Footer Bottom Text */
.footer-bottom-text {
  margin-top: 1rem;
}

.footer-copyright {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
}

.footer-tagline-bottom {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  margin-bottom: 0.75rem;
}

.footer-developer {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.75rem;
  font-weight: 500;
}

/* Mobile Footer Adjustments */
@media (max-width: 768px) {
  .footer-content {
    padding: 3rem 1.5rem 2rem;
  }
  
  .footer-logo-img {
    width: 60px;
    height: 60px;
  }
  
  .footer-brand-name {
    font-size: 1.5rem;
  }
  
  .footer-tagline {
    font-size: 1rem;
  }
  
  .footer-intro {
    font-size: 0.9rem;
  }
  
  .footer-info {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-contact-info {
    font-size: 0.85rem;
  }
  
  .footer-navigation {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .footer-separator {
    display: none;
  }
  
  .footer-social-links {
    gap: 1rem;
  }
  
  .footer-social-link {
    width: 45px;
    height: 45px;
  }
  
  .footer-divider {
    margin: 2rem 0;
  }
}

/* Remove old footer styles */
.footer-container {
  display: none;
}

.footer-grid {
  display: none;
}

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

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

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

.footer-title {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-description {
  line-height: 1.7;
  margin-bottom: 1rem;
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.6;
}

.footer-bottom {
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* Social links spacing */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

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

/* WhatsApp float button spacing */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

/* Mobile spacing adjustments */
@media (max-width: 768px) {
  .journey {
    padding: 5rem 0;
  }
  
  .journey-header {
    margin-bottom: 3rem;
    padding: 0 1rem;
  }
  
  .journey-phases {
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  
  .journey-card {
    padding: 2rem 1.5rem;
  }
  
  .gallery {
    padding: 5rem 0;
  }
  
  .gallery-grid {
    gap: 1.5rem;
    margin-top: 3rem;
  }
  
  .features-grid {
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .feature-card {
    padding: 2rem 1.5rem;
  }
  
  .contact-packages {
    padding: 5rem 0;
  }
  
  .contact-card-content {
    padding: 2.5rem 2rem;
  }
  
  .call-to-action {
    padding: 5rem 0;
  }
  
  .call-to-action-card {
    padding: 3rem 2rem;
  }
  
  .call-to-action-title {
    font-size: 2rem;
  }
  
  .footer {
    padding: 4rem 0 2rem;
  }
  
  .footer-container {
    padding: 0 1.5rem;
  }
  
  .footer-grid {
    gap: 3rem;
    margin-bottom: 3rem;
  }
  
  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 3.5rem;
    height: 3.5rem;
  }
}

/* Typography spacing improvements */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  line-height: 1.3;
}

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

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

/* Button spacing */
.btn {
  margin: 0.5rem;
}

.btn:first-child {
  margin-left: 0;
}

.btn:last-child {
  margin-right: 0;
}

/* List spacing */
ul, ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

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

/* Clean white space management */
* + h2,
* + h3,
* + h4 {
  margin-top: 2.5rem;
}

* + p {
  margin-top: 1rem;
}

/* Consistent border radius */
.card,
.feature-card,
.journey-card,
.contact-card,
.gallery-item {
  border-radius: 1.5rem;
}

/* Consistent shadows */
.card,
.feature-card,
.journey-card {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card:hover,
.feature-card:hover,
.journey-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* Footer Admin Login Button */
.footer-admin-login {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  animation: adminPulse 3s ease-in-out infinite;
}

.admin-login-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.admin-login-btn svg {
  transition: transform 0.3s ease;
}

.admin-login-btn:hover svg {
  transform: scale(1.1) rotate(5deg);
}

@keyframes adminPulse {
  0%, 100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}