/* ===== CSS Variables ===== */
:root {
    --background: hsl(0 0% 100%);
    --foreground: hsl(220 20% 15%);
    --card: hsl(0 0% 100%);
    --card-foreground: hsl(220 20% 15%);
    --primary: hsl(214 100% 50%);
    --primary-foreground: hsl(0 0% 100%);
    --secondary: hsl(220 15% 96%);
    --secondary-foreground: hsl(220 20% 25%);
    --muted: hsl(220 15% 96%);
    --muted-foreground: hsl(220 10% 45%);
    --accent: hsl(214 100% 95%);
    --accent-foreground: hsl(214 100% 40%);
    --border: hsl(220 15% 90%);
    --input: hsl(220 15% 92%);
    --ring: hsl(214 100% 50%);
    --radius: 0.75rem;
    --glow-primary: 0 4px 20px hsla(214, 100%, 50%, 0.15);
    --gradient-primary: linear-gradient(135deg, hsl(214 100% 50%) 0%, hsl(214 100% 60%) 100%);
    --gradient-accent: linear-gradient(135deg, hsl(214 100% 50%) 0%, hsl(230 100% 60%) 100%);
}

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

/* Custom scrollbar - Minimal */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: hsl(220 15% 96%);
}

::-webkit-scrollbar-thumb {
  background: hsl(214 100% 50% / 0.3);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: hsl(214 100% 50% / 0.5);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

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

/* ===== Utility Classes ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

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

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

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
}

.btn-hero {
    background: var(--gradient-accent);
    color: var(--primary-foreground);
    box-shadow: var(--glow-primary);
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px hsla(214, 100%, 50%, 0.25);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--foreground);
}

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

.btn-ghost {
    background: transparent;
    color: var(--muted-foreground);
}

.btn-ghost:hover {
    color: var(--foreground);
}

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

.btn-xl {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 1.25rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: hsla(0, 0%, 100%, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
}

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

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

.logo-img {
    width: 40px;
    height: 40px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: -4px;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .nav-links {
    display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

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

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

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

/* Mobile menu base */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  background: white;

  margin-top: 1rem;
  padding: 2rem 0;

  animation: fadeInUp 0.3s ease;
}

/* Visible */
.mobile-menu.is-open {
  display: flex;
}

/* Links */
.mobile-link {
  padding: 0.5rem 0;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s ease;
}

.menu-icon line {
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
}

/* Estado abierto */
.mobile-menu-btn.is-open .line1 {
  transform: translateY(4px) rotate(45deg);
}

.mobile-menu-btn.is-open .line2 {
  opacity: 0;
}

.mobile-menu-btn.is-open .line3 {
  transform: translateY(-4px) rotate(-45deg);
}

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

.mobile-menu-btn.is-open svg {
  transform: rotate(90deg);
}

.no-scroll {
  overflow: hidden;
}

/* CTA */
.mobile-cta {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Mobile only */
@media (min-width: 1024px) {
  .mobile-menu,
  .mobile-menu-btn {
    display: none !important;
  }
}
.slideInUp {
  -webkit-animation: slideInUp 1s 1;
  animation: slideInUp 1s 1;
}
@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 5rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

/* Animaciones para los gradientes */
@keyframes float-random-1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -40px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 30px) scale(0.95);
    }
    75% {
        transform: translate(40px, 20px) scale(1.05);
    }
}

@keyframes float-random-2 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    33% {
        transform: translate(-40px, 30px) scale(1.15) rotate(5deg);
    }
    66% {
        transform: translate(25px, -35px) scale(0.9) rotate(-5deg);
    }
}

@keyframes float-random-3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    20% {
        transform: translate(35px, 25px) scale(1.08);
    }
    40% {
        transform: translate(-30px, -20px) scale(0.92);
    }
    60% {
        transform: translate(20px, 40px) scale(1.12);
    }
    80% {
        transform: translate(-25px, 15px) scale(0.96);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.4;
        filter: blur(60px) brightness(1);
    }
    50% {
        opacity: 0.6;
        filter: blur(70px) brightness(1.2);
    }
}

.hero-gradient-1 {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, hsla(199, 92%, 74%, 0.4), hsla(214, 100%, 50%, 0.2), transparent);
    border-radius: 50%;
    filter: blur(60px);
    animation: float-random-1 20s ease-in-out infinite, pulse-glow 8s ease-in-out infinite;
}

.hero-gradient-2 {
    position: absolute;
    top: 40%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, hsla(217, 91%, 60%, 0.3), hsla(199, 92%, 74%, 0.2), transparent);
    border-radius: 50%;
    filter: blur(60px);
    animation: float-random-2 25s ease-in-out infinite, pulse-glow 10s ease-in-out infinite 2s;
}

.hero-gradient-3 {
    position: absolute;
    bottom: 20%;
    left: 30%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, hsla(214, 100%, 50%, 0.25), hsla(199, 92%, 74%, 0.15), transparent);
    border-radius: 50%;
    filter: blur(60px);
    animation: float-random-3 30s ease-in-out infinite, pulse-glow 12s ease-in-out infinite 4s;
}

.hero-mesh {
    position: absolute;
    inset: 0;
    background-image: 
    linear-gradient(hsla(214, 100%, 50%, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, hsla(214, 100%, 50%, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8rem;
    background: linear-gradient(to top, var(--background), transparent);
}

.large_card{
    width: 100%;
}

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

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

/* Animaciones de entrada para el contenido */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-left {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fade-in-right {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-text {
    text-align: center;
    animation: fade-in-left 1s ease-out 0.2s backwards;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: hsla(214, 100%, 50%, 0.05);
    border: 1px solid hsla(214, 100%, 50%, 0.1);
    margin-bottom: 2rem;
    animation: fade-in-up 1s ease-out 0.4s backwards;
}

.hero-badge-icon {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.hero-badge-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.hero-title {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    animation: fade-in-up 1s ease-out 0.6s backwards;
}

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

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

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 36rem;
    margin: 0 auto 2rem;
    animation: fade-in-up 1s ease-out 0.8s backwards;
}

@media (min-width: 1024px) {
    .hero-subtitle {
        margin: 0 0 2rem;
    }
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    animation: fade-in-up 1s ease-out 1s backwards;
}

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

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

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

.hero-stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    animation: fade-in-up 1s ease-out 1.2s backwards;
}

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

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

.hero-visual {
    position: relative;
    animation: fade-in-right 1s ease-out 0.4s backwards;
}

/* Animación mejorada de float */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes float-delayed {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.hero-dashboard {
    background: var(--card);
    border-radius: 1rem;
    padding: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
    border: 1px solid var(--border);
    animation: float 6s ease-in-out infinite;
}

.hero-dashboard img {
    border-radius: 0.75rem;
}

.hero-float-1 {
    position: absolute;
    top: -1rem;
    right: -1rem;
    background: var(--card);
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid var(--border);
    animation: float-delayed 4s ease-in-out infinite;
}

.hero-float-2 {
    position: absolute;
    bottom: -1rem;
    left: -1rem;
    background: var(--card);
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid var(--border);
    animation: float 5s ease-in-out infinite 0.5s;
}

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

.online-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.online-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
    animation: pulse 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator-inner {
    width: 24px;
    height: 40px;
    border: 2px solid hsla(214, 100%, 50%, 0.3);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

@keyframes scroll-dot {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(16px);
        opacity: 0;
    }
}

.scroll-indicator-dot {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 9999px;
    animation: scroll-dot 1.5s infinite;
}

/* Animación adicional para el gradient text */
@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.gradient-text {
    /* background: linear-gradient(90deg, 
        hsl(214, 100%, 50%), 
        hsl(199, 92%, 74%), 
        hsl(217, 91%, 60%),
        hsl(214, 100%, 50%)
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite; */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-image: var(--gradient-primary);
}

/* Efecto hover para los botones del hero */
.hero-cta .btn {
    transition: all 0.3s ease;
}

.hero-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.hero-cta .btn-hero:hover {
    box-shadow: 0 10px 25px hsla(214, 100%, 50%, 0.3);
}

/* Reducir animaciones si el usuario prefiere movimiento reducido */
@media (prefers-reduced-motion: reduce) {
    .hero-gradient-1,
    .hero-gradient-2,
    .hero-gradient-3,
    .hero-dashboard,
    .hero-float-1,
    .hero-float-2,
    .scroll-indicator,
    .online-dot,
    .gradient-text {
        animation: none;
    }
    
    .hero-text,
    .hero-badge,
    .hero-title,
    .hero-subtitle,
    .hero-stats,
    .hero-cta,
    .hero-visual {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* ===== Features Section ===== */
.features {
    padding: 6rem 0;
    background: hsla(220, 15%, 96%, 0.3);
}

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

.section-title {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
}

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

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

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

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

.feature-card {
    background: var(--card);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border-color: hsla(214, 100%, 50%, 0.2);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    background: hsla(214, 100%, 50%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    transform: scale(1.05);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    transition: color 0.3s ease;
}

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

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.feature-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.feature-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-link span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary);
}

.feature-link-line {
    width: 16px;
    height: 1px;
    background: var(--primary);
}

/* ===== Booking Engine Section ===== */
.booking-engine {
    padding: 6rem 0;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

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

.booking-visual {
    order: 2;
    position: relative;
}

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

.booking-content {
    order: 1;
}

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

.booking-card {
    background: var(--card);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.booking-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.booking-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
}

.booking-card-dots {
    display: flex;
    gap: 4px;
}

.booking-card-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.booking-card-dot.red { background: #f87171; }
.booking-card-dot.yellow { background: #facc15; }
.booking-card-dot.green { background: #4ade80; }

.booking-dates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.booking-date {
    background: hsla(220, 15%, 96%, 0.5);
    border-radius: 0.75rem;
    padding: 1rem;
}

.booking-date-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-bottom: 4px;
}

.booking-date-value {
    font-weight: 600;
}

.booking-room {
    background: hsla(220, 15%, 96%, 0.5);
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.booking-room-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.booking-room-name {
    font-weight: 600;
}

.booking-room-guests {
    font-size: 0.875rem;
    color: var(--primary);
}

.booking-room-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.booking-room-per-night {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.booking-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.booking-total-label {
    color: var(--muted-foreground);
}

.booking-total-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
}

.booking-float {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--card);
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid var(--border);
    animation: float 6s ease-in-out infinite;
}

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

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

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

.benefit-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: hsla(214, 100%, 50%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-check svg {
    width: 12px;
    height: 12px;
    color: var(--primary);
}

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

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

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

.stat-icon {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* ===== Pricing Section ===== */
.pricing {
    padding: 6rem 0;
    background: hsla(220, 15%, 96%, 0.3);
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: hsla(214, 100%, 50%, 0.05);
    border: 1px solid hsla(214, 100%, 50%, 0.1);
    margin-bottom: 1.5rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pricing-cards {
    grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background: var(--card);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: hsla(214, 100%, 50%, 0.3);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transform: scale(1.05);
}

.pricing-popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 16px;
    border-radius: 9999px;
    background: var(--primary);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
}

.pricing-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 2rem;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
}

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

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.pricing-feature-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: hsla(214, 100%, 50%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-feature-icon svg {
    width: 12px;
    height: 12px;
    color: var(--primary);
}

.pricing-feature-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.pricing-cta {
    width: 100%;
}

.pricing-trust {
    text-align: center;
    margin-top: 4rem;
}

.pricing-trust-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.pricing-trust-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    opacity: 0.4;
}

.pricing-trust-logo {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--muted-foreground);
}

/* ===== Contact Section ===== */
.contact {
    position: relative;
    padding: 2rem 0;
}

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

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

.contact-info-items {
    margin-bottom: 3rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    background: hsla(214, 100%, 50%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.contact-info-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.contact-info-value {
    transition: color 0.3s ease;
}

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

.contact-chat {
    background: var(--card);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
}

.contact-chat-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.contact-chat-header svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.contact-chat-title {
    font-weight: 600;
}

.contact-chat-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.contact-form {
    background: var(--card);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-xl{
    font-size: 1.8rem;
}
.text-center{
    text-align: center;
}

.contact-form-subtitle {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .form-row {
    grid-template-columns: 1fr 1fr;
    }
}

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

.form-label {
    display: block;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: hsla(220, 15%, 96%, 0.3);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-textarea {
    resize: none;
    min-height: 120px;
}

.form-disclaimer {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    text-align: center;
    margin-top: 1rem;
}

/* ===== Footer ===== */
.footer {
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--border);
    background: hsla(220, 15%, 96%, 0.3);
}

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

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

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

.footer-brand {
    max-width: 280px;
}

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

.footer-brand-description {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.footer-social {
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-foreground);
    transition: all 0.3s ease;
}

.footer-social:hover {
    color: var(--primary);
    border-color: hsla(214, 100%, 50%, 0.3);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-column-title {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links-h {
    list-style: none;
}

.footer-link {
    margin-bottom: 0.75rem;
}

.footer-link a {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
    .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    }
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.footer-status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* ===== Animations ===== */
@keyframes float {
    0%, 100% {
    transform: translateY(0px);
    }
    50% {
    transform: translateY(-10px);
    }
}

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

@keyframes bounce {
    0%, 100% {
    transform: translateX(-50%) translateY(0);
    }
    50% {
    transform: translateX(-50%) translateY(-10px);
    }
}

/* ===== SVG Icons ===== */
.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}

/* ===== Blog Base ===== */
.blog {
  padding-top: 4rem;
}

/* ===== Hero ===== */
.blog-hero {
  padding: 6rem 0 4rem;
  text-align: center;
}

.blog-hero-inner {
  max-width: 48rem;
}

.blog-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  background: hsla(214,100%,50%,0.1);
  color: var(--primary);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.blog-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.blog-subtitle {
  color: var(--muted-foreground);
  font-size: 1.125rem;
}

/* ===== Categories ===== */
.blog-categories {
  padding-bottom: 2rem;
}

.blog-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.blog-category {
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  background: var(--secondary);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 0;
  color: #676f7e;
  font-family: 'Plus Jakarta Sans';
}

.blog-category:hover {
  color: var(--primary);
}

.blog-category.is-active {
  background: var(--primary);
  color: var(--primary-foreground);
}

/* ===== Featured ===== */
.blog-featured {
  padding: 2rem 0;
}

.blog-featured-card {
  display: block;
  background: var(--card);
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.blog-featured-card:hover {
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.blog-featured-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .blog-featured-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-featured-content {
  padding: 3rem;
}

.blog-featured-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.blog-featured-excerpt {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.blog-read-more {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--primary);
  font-weight: 600;
}

/* ===== Grid ===== */
.blog-grid {
  padding: 4rem 0;
}

.blog-grid-inner {
  display: grid;
  gap: 2rem;
}

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

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

.blog-card {
  background: var(--card);
  border-radius: 1rem;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-title {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.blog-card-excerpt {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* ===== Tags ===== */
.blog-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  border-radius: 9999px;
  background: hsla(214,100%,50%,0.1);
  color: var(--primary);
  margin-bottom: 0.75rem;
}

/* ===== Newsletter ===== */
.blog-newsletter {
  padding: 5rem 0;
}

.blog-newsletter-box {
  background: hsla(214,100%,50%,0.05);
  border: 1px solid hsla(214,100%,50%,0.1);
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
}

.blog-newsletter-box h3 {
    color: #1f242e;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.blog-newsletter-box p {
    color: #676f7e;
    margin-bottom: 1.5rem;
}

.blog-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.blog-newsletter-form input {
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-family: 'Plus Jakarta Sans';
}


/* ===== Article refinements ===== */
.article {
  padding-top: 6rem;
}

.separator {
  width: 1rem;
  height: 1rem;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolyline points='9,18 15,12 9,6' fill='none' stroke='black' stroke-width='2'/%3E%3C/svg%3E") center / contain no-repeat;
  opacity: 0.4;
}

/* Breadcrumb */
.breadcrumb {
    padding: 1rem 0;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

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

.breadcrumb-list svg {
    width: 1rem;
    height: 1rem;
}

.breadcrumb-current {
    color: var(--foreground);
    font-weight: 500;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Hero */
.article-header {
    padding-bottom: 2rem;
}

.article-header-inner {
    max-width: 56rem;
    margin: 0 auto;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    transition: color 0.2s;
}

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

.back-link svg {
    width: 1rem;
    height: 1rem;
}

.category-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.article-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

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

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

.article-excerpt {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

/* Author & Meta */
.article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

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

.author-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.author-name {
    font-weight: 500;
}

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

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

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-item svg {
    width: 1rem;
    height: 1rem;
}

/* Featured Image */
.featured-image {
    padding-bottom: 3rem;
}

.featured-image-inner {
    max-width: 64rem;
    margin: 0 auto;
}

.featured-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Content Layout */
.content-layout {
    padding-bottom: 4rem;
}

.content-layout-inner {
    max-width: 64rem;
    margin: 0 auto;
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .content-layout-inner {
    grid-template-columns: 1fr 280px;
    }
}

/* Article Content */
.article-content {
    max-width: none;
}

.article-content p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.8;
}

.article-content p.lead {
    font-size: 1.25rem;
    color: var(--foreground);
    border-left: 4px solid var(--primary);
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.article-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.article-content ul, ol {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--muted-foreground);
    font-size: 1.125rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content b{
    color: #373737;
}

.article-content blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--foreground);
    background: var(--secondary);
    padding: 1.5rem;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.article-content table{
  width: 100%;
  margin: 0 auto;
  text-align: left;
  border: none;
  border-collapse: collapse;
  border: 1px solid #e2e4e9;
  margin: 1.5em 0;
  border-radius: 20px;
}

.article-content th{
  padding: 0.1em 0.8em;
  height: 40px;
  border: 1px solid #e2e4e9;
  border-radius: 5px;
}
.article-content td{
  padding: 0.1em 0.8em;
  height: 40px;
  border: 1px solid #e2e4e9;
  border-radius: 5px;
}

.article-content blockquote p {
    color: var(--foreground);
    margin-bottom: 0;
}

/* Sidebar */
.sidebar {
    display: none;
}

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

.sidebar-sticky {
    position: sticky;
    top: 7rem;
}

.toc-card {
    background: rgba(210, 230, 245, 0.5);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.toc-title {
    font-weight: 700;
    margin-bottom: 1rem;
}

.toc-list {
    list-style: none;
}

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

.toc-list a {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    display: block;
    padding: 0.25rem 0;
    transition: color 0.2s;
}

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

/* Share */
.share-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.share-title {
    font-weight: 500;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.share-title svg {
    width: 1rem;
    height: 1rem;
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
}

.share-btn {
    padding: 0.5rem;
    border-radius: 0.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.share-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.share-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Related Posts */
.related-section {
    background: rgba(210, 230, 245, 0.3);
    padding: 4rem 0;
}

.related-inner {
    max-width: 64rem;
    margin: 0 auto;
}

.related-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

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

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

.related-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

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

.related-card-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.related-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.related-card-content {
    padding: 1.25rem;
}

.related-card-category {
    display: inline-block;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.related-card-title {
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}

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

.related-card-meta {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: 0.5rem;
}

/* CTA Section */
.cta-section {
    padding: 4rem 1rem;
}

.cta-inner {
    max-width: 42rem;
    margin: 0 auto;
    text-align: center;
}

.cta-card {
    background: rgba(14, 165, 233, 0.05);
    border: 1px solid rgba(14, 165, 233, 0.1);
    border-radius: 1rem;
    padding: 2rem;
}

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

.cta-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cta-text {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.back-link {
  font-size: 0.875rem;
  color: #6b7280;
  text-decoration: none;
}
.demo-page {
  padding-top: 6rem;
}

.section-title-demo{
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
}
.benefits {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
    .section-title-demo {
        font-size: 2.25rem;
    }
    .benefits{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .section-title-demo {
        font-size: 3.3rem;
    }
}

.badge {
  display: inline-block;
  background: rgba(59,130,246,0.1);
  color: #2563eb;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}



.benefit-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  gap: 0.75rem;
  border: 1px solid #e5e7eb;
}

.benefit-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background-color: rgb(0 110 255 / 10%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.svg_icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #3b82f6;
}

.benefit-text-demo {
    font-size: 0.875rem;
    line-height: 1.5;
}

.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.section-title-tes {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.testimonial-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.rating-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.star {
    width: 1rem;
    height: 1rem;
    color: #facc15;
    fill: #facc15;
}

.quote-text {
    color: #374151;
    margin-bottom: 1rem;
    font-style: italic;
    line-height: 1.6;
    font-size: 0.9375rem;
}

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

.author-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #dbeafe;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-initials {
    color: #2563eb;
    font-weight: bold;
    font-size: 0.875rem;
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.author-name {
    font-weight: 600;
    color: #111827;
    font-size: 0.875rem;
}

.author-role {
    font-size: 0.75rem;
    color: #6b7280;
}

.stats {
  background: rgba(255,255,255,0.7);
  border-top: 1px solid #e5e7eb;
  padding: 4rem 0;
}

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

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

.stat-number {
    font-size: 1.875rem;
    font-weight: bold;
    color: #2563eb;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

@media (min-width: 1024px) {
    .stat-number {
        font-size: 2.25rem;
    }
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
}

.demo-footer {
  padding: 1rem 0;
  border-top: 1px solid #e5e7eb;
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

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

.footer-link {
    font-size: 0.875rem;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #2563eb;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
    }
}

.trust-badges-container {
    max-width: 800px;
    margin: 1em auto;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
}

.badge-icon {
    width: 1rem;
    height: 1rem;
    color: #2563eb;
    flex-shrink: 0;
}

.badge-text {
    font-size: 0.75rem;
    line-height: 1.5;
}
.cont_mensaje{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: 0px 0px 10px #969696;
  z-index: 2000;
  text-align: center;
}
.isTrue{
  /* background: #2196F3;
  border: 1px solid #1392cc; */
  background: #0157bf;
  border: 1px solid #2b44d3;
}
.isFalse{
  /* background: #d62c2c; 
  border: 1px solid #ff9f41; */
  background: #2b5aff;
}
.text_mensaje{
  display: inline-block;
  color: white;
  padding: .8em 0;
}
.circle_ex{
  position: absolute;
  right: .5em;
  top: .5em;
  font-size: 1.5em;
  color: white;
}
.inp_fail{
    border-color: red;
}

/* Section */
.testimonials-section {
    padding: 5rem 0;
    background: rgba(249, 250, 251, 0.3);
}

@media (min-width: 768px) {
    .testimonials-section {
        padding: 7rem 0;
    }
}

/* Header */
.header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}
/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

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

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* Quote Icon */
.quote-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: rgba(37, 99, 235, 0.2);
    margin-bottom: 1.5rem;
}

/* Rating */
.rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    width: 1.25rem;
    height: 1.25rem;
    color: #2563eb;
    fill: #2563eb;
}

/* Content */
.testimonial-content {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
/* Author */
.author-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.author-image {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(37, 99, 235, 0.2);
}

.author-info-test {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.125rem;
}

.author-role {
    font-size: 0.875rem;
    color: #6b7280;
}

.author-company {
    font-size: 0.875rem;
    color: #2563eb;
    font-weight: 500;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 56rem;
    margin: 0 auto;
}

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

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

.stat-value {
    font-size: 1.875rem;
    font-weight: bold;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .stat-value {
        font-size: 2.25rem;
    }
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

/* SVG Icons */
svg {
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}