/* CSS Tokens & Modern Travel Styling for Pasadias Cali */
:root {
    --primary: #0284c7;
    --primary-dark: #0369a1;
    --secondary: #0f172a;
    --accent: #f59e0b;
    --accent-green: #10b981;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --radius: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
}

/* Floating WhatsApp */
.floating-wsa {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #25d366;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.5);
    transition: transform 0.3s ease;
}
.floating-wsa:hover {
    transform: scale(1.1);
}
.wsa-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ef4444;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}

/* Navigation */
.top-nav {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 20px;
    font-weight: 800;
    color: var(--secondary);
    text-decoration: none;
    letter-spacing: -0.5px;
}
.logo span {
    color: var(--primary);
}
.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 14px;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: var(--primary);
}
.btn-nav {
    background: #25d366 !important;
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: 9999px;
    font-weight: 700 !important;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

/* Hero Section with Split Form */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #091e3a 0%, #0369a1 100%);
    color: #ffffff;
    padding: 70px 24px 60px;
}
.hero-split-container {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}
.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.hero-left h1 {
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -1px;
}
.hero-left p {
    font-size: 16px;
    color: #e2e8f0;
    margin-bottom: 24px;
}
.hero-featured-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    border: 2px solid rgba(255,255,255,0.2);
    margin-bottom: 24px;
}
.hero-featured-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}
.hero-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.stat-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 10px 18px;
    flex: 1;
    min-width: 120px;
    text-align: center;
}
.stat-num {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: #38bdf8;
}
.stat-lbl {
    font-size: 11px;
    color: #cbd5e1;
}

/* Hero Lead Form Box */
.hero-form-card {
    background: #ffffff;
    color: var(--text-main);
    padding: 36px 30px;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.8);
}
.hero-form-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 8px;
    line-height: 1.25;
}
.hero-form-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
}
.lead-form .form-group {
    margin-bottom: 16px;
}
.lead-form label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--secondary);
}
.lead-form input, .lead-form select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}
.lead-form input:focus, .lead-form select:focus {
    border-color: var(--primary);
}
.btn-submit-lead {
    width: 100%;
    background: #25d366;
    color: #ffffff;
    border: none;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
    transition: background 0.2s;
    margin-top: 8px;
}
.btn-submit-lead:hover {
    background: #1eb954;
}
.form-guarantee {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 14px;
    justify-content: center;
}

/* Filter Bar */
.filter-bar {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding: 12px 24px;
    position: sticky;
    top: 61px;
    z-index: 90;
    overflow-x: auto;
}
.filter-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    gap: 12px;
    white-space: nowrap;
}
.filter-pill {
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    transition: all 0.2s;
}
.filter-pill:hover, .filter-pill.active {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}
.filter-pill.highlight {
    background: #fef3c7;
    color: #b45309;
    border-color: #fde68a;
}
.filter-pill.highlight:hover {
    background: #f59e0b;
    color: #ffffff;
}

/* Main Layout & Sections */
.main-wrapper {
    max-width: 1240px;
    margin: 0 auto;
    padding: 40px 24px;
}
.plan-section {
    margin-bottom: 60px;
}
.plan-section.alt-bg {
    background: #ffffff;
    padding: 40px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
}
.section-title {
    margin-bottom: 28px;
}
.section-title h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -0.5px;
}
.section-title p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Promo Banner */
.promo-highlight-banner {
    background: linear-gradient(135deg, #fef3c7 0%, #ffedd5 100%);
    border: 2px dashed #f59e0b;
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.promo-icon {
    font-size: 40px;
}
.promo-text {
    flex: 1;
    min-width: 250px;
}
.promo-text h3 {
    color: #92400e;
    font-size: 20px;
    font-weight: 800;
}
.promo-text p {
    color: #78350f;
    font-size: 14px;
}
.promo-prices {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.pill-badge {
    background: #ffffff;
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 13px;
    color: #1e293b;
    border: 1px solid #e2e8f0;
}
.pill-badge.highlight {
    background: #f59e0b;
    color: #ffffff;
    border-color: #f59e0b;
}

/* Cards Grid with Images */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 24px;
}
.card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.card.popular {
    border: 2px solid var(--primary);
}
.card.promo-card {
    border: 2px solid #f59e0b;
    background: #fffdfa;
}
.badge-pop {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 9999px;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.badge-pop.promo {
    background: #dc2626;
}

/* Card Image Header */
.card-img-wrap {
    width: 100%;
    height: 180px;
    position: relative;
    overflow: hidden;
    background: #e2e8f0;
}
.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.card:hover .card-img-wrap img {
    transform: scale(1.05);
}

.card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.card-tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.card h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 8px;
    line-height: 1.25;
}
.card .desc {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 16px;
    flex-grow: 1;
}
.price {
    font-size: 26px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 16px;
}
.price small {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
}
.price.promo-val {
    color: #dc2626;
}
.features {
    list-style: none;
    margin-bottom: 20px;
    border-top: 1px solid var(--border-color);
    padding-top: 14px;
}
.features li {
    font-size: 13px;
    color: #334155;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}
.features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 900;
}
.btn-card {
    display: block;
    text-align: center;
    background: #25d366;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 14px;
    transition: background 0.2s ease;
}
.btn-card:hover {
    background: #1eb954;
}
.btn-card.highlight {
    background: #ea580c;
}
.btn-card.highlight:hover {
    background: #c2410c;
}

/* Reviews / Testimonials Section */
.testimonials-section {
    margin-bottom: 60px;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.testimonial-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
}
.testimonial-stars {
    color: #f59e0b;
    font-size: 18px;
    margin-bottom: 12px;
}
.testimonial-card p {
    color: var(--text-main);
    font-size: 14px;
    font-style: italic;
    margin-bottom: 16px;
    flex-grow: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e0f2fe;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}
.author-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
}
.author-loc {
    font-size: 12px;
    color: var(--text-muted);
}

/* FAQ Section */
.faq-section {
    background: #ffffff;
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    margin-bottom: 60px;
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.faq-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}
.faq-item p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
}

/* Footer */
.site-footer {
    background: var(--secondary);
    color: #cbd5e1;
    padding: 50px 24px 20px;
}
.footer-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.footer-brand {
    max-width: 500px;
}
.footer-brand h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 12px;
}
.footer-brand p {
    font-size: 14px;
    margin-bottom: 10px;
}
.footer-links h4 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 12px;
}
.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
}
.footer-links a:hover {
    color: #38bdf8;
}
.footer-bottom {
    max-width: 1240px;
    margin: 0 auto;
    text-align: center;
    font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    color: #64748b;
}

@media (max-width: 900px) {
    .hero-split-container {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .nav-links a:not(.btn-nav) { display: none; }
    .hero-section { padding: 40px 16px 30px; }
    .grid-cards { grid-template-columns: 1fr; }
    .promo-highlight-banner { flex-direction: column; align-items: flex-start; }
}
