/* ==================== EBO STAY - MODERN PREMIUM DESIGN v3 ==================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Premium Color Palette */
    --primary: #ff6b35;
    --primary-light: #ff8c5a;
    --primary-dark: #e85a2a;
    --secondary: #1a3c5e;
    --secondary-light: #2a5580;
    --accent: #00d4ff;
    --accent-dark: #0099cc;
    
    /* Status Colors */
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #06b6d4;
    
    /* Neutral Palette */
    --light-bg: #f8fafc;
    --light-gray: #f1f5f9;
    --text: #1e293b;
    --text-light: #64748b;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    
    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --shadow-xl: 0 12px 48px rgba(0,0,0,0.2);
}

/* ==================== GLOBAL STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    color: var(--text);
    background: var(--light-bg);
    line-height: 1.6;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    body {
        font-size: 15px;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ==================== HEADER & NAVIGATION ==================== */
header {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: #fff;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

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

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

.logo img {
    height: 52px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

@media (max-width: 480px) {
    .logo img {
        height: 48px;
    }
}

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

nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

nav ul li a {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

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

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover {
    color: #fff;
}

/* ==================== NAVBAR BUTTON HIGHLIGHTS ==================== */
.nav-login-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 12px rgba(255,107,53,0.3) !important;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.nav-login-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary)) !important;
    box-shadow: 0 8px 20px rgba(255,107,53,0.5) !important;
    transform: translateY(-3px) scale(1.05) !important;
}

.nav-login-btn::after {
    display: none !important;
}

.nav-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #1ebe5d 100%) !important;
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 12px rgba(37,211,102,0.3) !important;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.nav-whatsapp:hover {
    background: linear-gradient(135deg, #1ebe5d, #25d366) !important;
    box-shadow: 0 8px 20px rgba(37,211,102,0.5) !important;
    transform: translateY(-3px) scale(1.05) !important;
}

.nav-whatsapp::after {
    display: none !important;
}

.nav-whatsapp::before {
    content: '💬';
    font-size: 16px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    header .container {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 20px;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--secondary);
        z-index: 1000;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 100px 40px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.3);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 25px !important;
    }

    nav ul li a {
        font-size: 20px !important;
        font-weight: 600 !important;
        color: #fff !important;
        padding: 0 !important;
    }

    .nav-login-btn, .nav-whatsapp {
        background: none !important;
        padding: 0 !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }

    .nav-whatsapp::before {
        display: none !important;
    }

    body.no-scroll {
        overflow: hidden;
    }
}

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

/* ==================== HERO SECTION ==================== */
.hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%), url('../images/backgrounds/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: #fff;
    padding: 180px 0 140px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,107,53,0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,212,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

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

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: 64px;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -1.5px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.1;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto 32px;
    font-weight: 400;
}

.hero-search {
    display: flex;
    gap: 10px;
    max-width: 700px;
    margin: 40px auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    padding: 10px 10px 10px 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    animation: fadeInScale 0.8s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-search input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    background: transparent;
    color: var(--text);
    min-width: 0;
    transition: all 0.3s ease;
}

.hero-search input:focus {
    transform: scale(1.02);
}

.hero-search input::placeholder {
    color: var(--text-light);
}

.hero-search .btn {
    border-radius: 40px;
    padding: 12px 28px;
    flex-shrink: 0;
}

.hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 16px;
}

@media (max-width: 1024px) {
    .hero {
        padding: 140px 0 100px;
        min-height: 90vh;
    }
    .hero h1 {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 60px;
        min-height: 100vh;
        text-align: center;
        background-attachment: scroll;
    }
    .hero .container {
        padding: 0 20px;
    }
    .hero h1 {
        font-size: 36px;
        line-height: 1.3;
        margin-bottom: 16px;
        text-align: center;
        font-weight: 700;
    }
    .hero p {
        font-size: 16px;
        margin-bottom: 28px;
        text-align: center;
        opacity: 0.95;
        line-height: 1.5;
    }
    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
        margin-bottom: 20px;
    }
    .hero-search {
        margin: 0 0 28px 0;
        border-radius: 16px;
        padding: 12px;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        gap: 10px;
        max-width: 100%;
    }
    .hero-search input {
        padding: 14px 16px;
        font-size: 15px;
        border-radius: 12px;
    }
    .hero-search .btn {
        width: 100%;
        padding: 14px;
        border-radius: 12px;
        font-size: 15px;
    }
    
    /* Cool Button Grid for Mobile */
    .hero-btns {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        margin-top: 0;
    }
    
    .hero-btns .btn {
        width: 100% !important;
        margin: 0 !important;
        padding: 16px !important;
        border-radius: 14px !important;
        font-size: 16px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        box-shadow: 0 6px 20px rgba(0,0,0,0.15) !important;
        font-weight: 600 !important;
    }

    .hero-btns .btn-primary {
        background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    }

    .hero-btns .btn-white {
        background: rgba(255,255,255,0.95) !important;
        backdrop-filter: blur(10px) !important;
        color: var(--secondary) !important;
        border: 1px solid rgba(255,255,255,0.3) !important;
        color: #fff !important;
    }

    .hero-btns .btn-whatsapp {
        background: linear-gradient(135deg, #25d366, #1ebe5d) !important;
        color: #fff !important;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0 50px;
        min-height: auto;
    }
    .hero h1 {
        font-size: 28px;
        margin-bottom: 12px;
    }
    .hero p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .hero-search {
        margin: 0 0 20px 0;
    }
    .hero-btns .btn {
        padding: 14px !important;
        font-size: 14px !important;
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ==================== STATS BAR ==================== */
.stats-bar {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    padding: 32px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px;
}

.stat-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .stat-num {
        font-size: 26px;
    }
}

/* ==================== SECTIONS ==================== */
.section {
    padding: 80px 0;
}

.section.light {
    background: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h1,
.section-header h2 {
    font-size: 40px;
    color: var(--secondary);
    font-weight: 800;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.section-header p {
    color: var(--text-light);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section {
        padding: 50px 0;
    }
    .section-header h1,
    .section-header h2 {
        font-size: 28px;
    }
    .section-header {
        margin-bottom: 36px;
    }
}

/* ==================== GRID ==================== */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

@media (max-width: 1024px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

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

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

/* ==================== CARDS ==================== */
.card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.card:hover {
    transform: translateY(-14px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
    animation: cardPulse 0.6s ease-out;
}

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

@keyframes cardPulse {
    0% {
        box-shadow: var(--shadow-lg);
    }
    50% {
        box-shadow: 0 12px 48px rgba(255,107,53,0.3);
    }
    100% {
        box-shadow: var(--shadow-lg);
    }
}

.card-img-wrap {
    position: relative;
    overflow: hidden;
    background: var(--light-gray);
    height: 240px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .card-img-wrap {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .card-img-wrap {
        height: 180px;
    }
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card:hover .card-img-wrap img {
    transform: scale(1.08);
}

.badge-deal {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-body h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--secondary);
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.card-body .meta {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 14px;
}

.card-body .price {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.card-body .price .old {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: line-through;
    font-weight: 500;
    margin-left: 8px;
}

.save-badge {
    background: #ecfdf5;
    color: var(--success);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
    margin-left: 6px;
    vertical-align: middle;
}

.card-footer-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--border-light);
}

.btn-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-card-details {
    background: var(--light-gray);
    color: var(--secondary);
    border: 1px solid var(--border-light);
}

.btn-card-details:hover {
    background: #e8ecf1;
    color: var(--secondary);
    border-color: var(--border);
    transform: translateY(-1px);
}

.btn-card-wa {
    background: #25d366;
    color: #fff;
    box-shadow: 0 4px 10px rgba(37,211,102,0.25);
    border: none;
}

.btn-card-wa:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(37,211,102,0.35);
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 15px;
    letter-spacing: 0.3px;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    box-shadow: 0 10px 20px rgba(255,107,53,0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    box-shadow: 0 6px 20px rgba(255,107,53,0.4);
    transform: translateY(-2px);
}

.btn-white {
    background: #fff;
    color: var(--secondary);
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(37,211,102,0.3);
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    font-weight: 600;
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-sm {
    padding: 10px 18px;
    font-size: 13px;
}

@media (max-width: 768px) {
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* ==================== FORMS ==================== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fff;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.coupon-row {
    display: flex;
    gap: 8px;
}

.coupon-row input {
    flex: 1;
}

.coupon-row button {
    padding: 12px 20px;
    background: var(--secondary);
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.coupon-row button:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
}

/* ==================== PRICE SUMMARY ==================== */
.price-summary {
    border-top: 2px solid var(--border);
    margin-top: 24px;
    padding-top: 20px;
}

.price-summary .row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text);
}

.price-summary .row.total {
    font-size: 20px;
    font-weight: 800;
    color: var(--secondary);
    border-top: 2px solid var(--border);
    padding-top: 14px;
    margin-top: 14px;
}

.price-summary .row.discount {
    color: var(--success);
}

/* ==================== PACKAGE DETAIL ==================== */
.package-detail {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

@media (max-width: 968px) {
    .package-detail {
        grid-template-columns: 1fr;
    }
}

.package-detail h1 {
    color: var(--secondary);
    margin-bottom: 12px;
    font-size: 36px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
}

.package-detail .meta-row {
    display: flex;
    gap: 24px;
    color: var(--text-light);
    margin-bottom: 28px;
    font-size: 14px;
    flex-wrap: wrap;
}

.detail-block {
    margin-bottom: 36px;
}

.detail-block h3 {
    color: var(--secondary);
    margin-bottom: 14px;
    border-bottom: 3px solid var(--primary);
    display: inline-block;
    padding-bottom: 8px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.detail-block ul {
    list-style: none;
    padding-left: 0;
}

.detail-block ul li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text);
    font-size: 14px;
}

.detail-block ul.inclusions li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 18px;
}

.detail-block ul.exclusions li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: var(--danger);
    font-weight: bold;
    font-size: 18px;
}

.itinerary-day {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--text);
}

.itinerary-day:last-child {
    border-bottom: none;
}

/* ==================== BOOKING SIDEBAR ==================== */
.booking-box {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 90px;
    height: fit-content;
    border: 1px solid var(--border);
}

.booking-box .price-display {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.booking-box .price-display .old {
    font-size: 16px;
    color: var(--text-light);
    text-decoration: line-through;
    font-weight: 500;
    margin-left: 8px;
}

@media (max-width: 968px) {
    .booking-box {
        position: static;
        top: auto;
    }
}

/* ==================== ALERTS ==================== */
.alert {
    padding: 14px 16px;
    border-radius: 10px;
    margin-bottom: 16px;
    font-size: 14px;
    border-left: 4px solid;
}

.alert-error {
    background: #fef2f2;
    color: var(--danger);
    border-left-color: var(--danger);
}

.alert-success {
    background: #f0fdf4;
    color: var(--success);
    border-left-color: var(--success);
}

/* ==================== CONFIRMATION PAGE ==================== */
.confirmation-box {
    max-width: 600px;
    margin: 60px auto;
    background: #fff;
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.confirmation-box .icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.confirmation-box table {
    width: 100%;
    margin-top: 28px;
    text-align: left;
    font-size: 14px;
}

.confirmation-box table td {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.confirmation-box table td:first-child {
    font-weight: 600;
    color: var(--text);
    width: 40%;
}

/* ==================== FOOTER ==================== */
footer {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: rgba(255,255,255,0.85);
    padding: 60px 0 24px;
    margin-top: 80px;
}

footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 48px;
    margin-bottom: 36px;
}

footer h4 {
    color: #fff;
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
}

footer ul {
    list-style: none;
}

footer ul li {
    padding: 8px 0;
    font-size: 13px;
}

footer ul li a {
    transition: all 0.3s ease;
}

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

.copyright {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

@media (max-width: 768px) {
    footer .container {
        gap: 32px;
    }
}

/* ==================== FEATURE CARDS ==================== */
.feature-card {
    background: #fff;
    border-radius: 18px;
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: var(--secondary);
    margin-bottom: 14px;
    font-size: 19px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.feature-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .feature-card {
        padding: 28px 24px;
        border-radius: 16px;
    }
    .feature-card:hover {
        transform: translateY(-6px) scale(1.01);
    }
    .feature-icon {
        font-size: 48px;
        margin-bottom: 16px;
    }
    .feature-card h3 {
        font-size: 17px;
    }
    .feature-card p {
        font-size: 14px;
    }
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-section {
    background: var(--light-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

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

.testimonial-card {
    background: #fff;
    border-radius: 18px;
    padding: 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary);
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 28px;
        border-radius: 16px;
    }
    .testimonial-card:hover {
        transform: translateY(-4px) scale(1.01);
    }
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 64px;
    color: var(--primary);
    opacity: 0.12;
    font-family: Georgia, serif;
    line-height: 1;
}

.stars {
    font-size: 16px;
    margin-bottom: 14px;
}

.testimonial-card p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.reviewer strong {
    display: block;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 600;
}

.reviewer span {
    font-size: 12px;
    color: var(--text-light);
}

/* ==================== CTA BANNER ==================== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 100px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-banner .container {
    position: relative;
    z-index: 2;
}

.cta-banner h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

.cta-banner p {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btns {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cta-banner {
        padding: 70px 0;
    }
    .cta-banner h2 {
        font-size: 32px;
        margin-bottom: 12px;
    }
    .cta-banner p {
        font-size: 16px;
        margin-bottom: 28px;
    }
    .cta-btns {
        gap: 12px;
    }
}

@media (max-width: 600px) {
    .cta-banner {
        padding: 50px 0;
    }
    .cta-banner h2 {
        font-size: 26px;
        margin-bottom: 10px;
    }
    .cta-banner p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .cta-btns {
        flex-direction: column;
        gap: 10px;
    }
    .cta-btns .btn {
        width: 100%;
        padding: 14px 20px;
    }
}

/* ==================== FILTER BAR ==================== */
.filter-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-input,
.filter-select {
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    color: var(--text);
    background: #fff;
    outline: none;
    transition: all 0.3s ease;
}

.filter-input {
    flex: 1;
    min-width: 220px;
}

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

/* ==================== WHATSAPP FLOATING BUTTON ==================== */
.wa-float {
    position: fixed;
    bottom: 100px;
    right: 24px;
    background: #25d366;
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    z-index: 998;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wa-float:hover {
    transform: scale(1.12);
    background: #1ebe5d;
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

/* ==================== EBO AI BADGE ==================== */
.ebo-ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px 8px 8px;
    border-radius: 50px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.ebo-ai-badge .ebo-ai-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 3px 12px rgba(255,107,53,0.35);
}

.ebo-ai-badge .ebo-ai-name {
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.4px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ==================== AI RECOMMENDER ==================== */
.ai-reco-card {
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.ai-reco-header {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: #fff;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.ai-reco-header .ebo-ai-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

.ai-reco-header h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 2px;
    font-family: 'Poppins', sans-serif;
}

.ai-reco-header p {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
}

.ai-reco-body {
    padding: 32px;
}

.ai-reco-result {
    margin-top: 24px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.ai-reco-result .ebo-ai-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    flex-shrink: 0;
}

.ai-reco-result .ai-reco-bubble {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    border-top-left-radius: 4px;
    padding: 16px 20px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text);
    white-space: pre-line;
    flex: 1;
}

/* ==================== EBO AI FLOATING WIDGET ==================== */
#eboAiFab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 6px 24px rgba(255,107,53,0.45);
    z-index: 999;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#eboAiFab:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 10px 32px rgba(255,107,53,0.5);
}

#eboAiFab::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    opacity: 0.5;
    animation: eboAiPulse 2.4s ease-out infinite;
}

#eboAiFab.is-open::after {
    display: none;
}

@keyframes eboAiPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    70% {
        transform: scale(1.4);
        opacity: 0;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

#eboAiPanel {
    position: fixed;
    bottom: 104px;
    right: 24px;
    width: 380px;
    max-height: min(580px, calc(100vh - 140px));
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 998;
    opacity: 0;
    transform: translateY(16px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

#eboAiPanel.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.ebo-ai-panel-header {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: #fff;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.ebo-ai-panel-header .ebo-ai-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: rgba(255,255,255,0.14);
    flex-shrink: 0;
}

.ebo-ai-panel-header .ebo-ai-titles {
    flex: 1;
    min-width: 0;
}

.ebo-ai-panel-header .ebo-ai-titles strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
}

.ebo-ai-panel-header .ebo-ai-titles span {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

.ebo-ai-panel-header .ebo-ai-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 3px rgba(16,185,129,0.25);
    flex-shrink: 0;
}

#eboAiClose {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

#eboAiClose:hover {
    color: #fff;
}

#eboAiMessages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: var(--light-bg);
}

.ebo-ai-msg {
    max-width: 84%;
    padding: 11px 15px;
    border-radius: 14px;
    font-size: 13.5px;
    line-height: 1.55;
    white-space: pre-line;
}

.ebo-ai-msg.bot {
    background: #fff;
    border: 1px solid var(--border);
    color: var(--text);
    border-bottom-left-radius: 4px;
    align-self: flex-start;
}

.ebo-ai-msg.user {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-bottom-right-radius: 4px;
    align-self: flex-end;
}

.ebo-ai-msg.error {
    background: #fef2f2;
    color: var(--danger);
    border: 1px solid #fecaca;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.ebo-ai-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 16px 12px;
    background: var(--light-bg);
    flex-shrink: 0;
}

.ebo-ai-suggestions button {
    background: #fff;
    border: 1px solid var(--border);
    color: var(--secondary);
    font-size: 12px;
    font-weight: 600;
    padding: 7px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ebo-ai-suggestions button:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(255,107,53,0.05);
}

.ebo-ai-typing {
    display: flex;
    gap: 4px;
    align-self: flex-start;
    background: #fff;
    border: 1px solid var(--border);
    padding: 12px 14px;
    border-radius: 14px;
    border-bottom-left-radius: 4px;
}

.ebo-ai-typing span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-light);
    animation: eboAiTyping 1.2s infinite ease-in-out;
}

.ebo-ai-typing span:nth-child(2) {
    animation-delay: 0.15s;
}

.ebo-ai-typing span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes eboAiTyping {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: translateY(-4px);
        opacity: 1;
    }
}

#eboAiForm {
    display: flex;
    gap: 8px;
    padding: 12px;
    border-top: 1px solid var(--border);
    background: #fff;
    flex-shrink: 0;
}

#eboAiForm input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 13.5px;
    font-family: inherit;
    background: var(--light-bg);
    transition: all 0.3s ease;
}

#eboAiForm input:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
}

#eboAiForm button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

#eboAiForm button:hover {
    transform: scale(1.08);
}

#eboAiForm button:disabled {
    opacity: 0.6;
    cursor: default;
    transform: none;
}

@media (max-width: 480px) {
    #eboAiPanel {
        right: 12px;
        left: 12px;
        bottom: 96px;
        width: auto;
        max-height: calc(100vh - 120px);
    }
    #eboAiFab {
        right: 16px;
        bottom: 16px;
    }
}

/* ==================== RESPONSIVE UTILITIES ==================== */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    header .container {
        min-height: 50px;
    }
    nav ul {
        gap: 12px;
    }
    .hero {
        padding: 50px 0;
    }
    .hero h1 {
        font-size: 28px;
    }
    .package-detail h1 {
        font-size: 26px;
    }
    .btn {
        padding: 10px 18px;
        font-size: 13px;
    }
    .confirmation-box {
        padding: 24px;
        margin: 30px auto;
    }
}

.nav-whatsapp {
    background: var(--success) !important;
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 50px;
    font-weight: 700 !important;
    box-shadow: 0 4px 12px rgba(16,185,129,0.3);
}

.nav-whatsapp:hover {
    background: #059669 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16,185,129,0.4);
}

.nav-login-btn {
    background: transparent !important;
    color: rgba(255,255,255,0.9) !important;
    padding: 10px 18px !important;
    border: 2px solid rgba(255,255,255,0.3) !important;
    border-radius: 8px;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.nav-login-btn:hover {
    background: rgba(255,255,255,0.1) !important;
    border-color: rgba(255,255,255,0.6) !important;
    color: #fff !important;
}


/* ==================== MOBILE ANIMATIONS & TRANSITIONS ==================== */
@media (max-width: 768px) {
    /* Smooth transitions for all interactive elements */
    button,
    a,
    input,
    select,
    textarea {
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    
    /* Search bar responsive styling */
    .hero-search input {
        font-size: 14px;
        padding: 10px 12px;
    }
    
    .hero-search input::placeholder {
        font-size: 13px;
    }
    
    .hero-search .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    /* Button animations on mobile */
    .btn {
        position: relative;
        overflow: hidden;
    }
    
    .btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255,255,255,0.3);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }
    
    .btn:active::before {
        width: 300px;
        height: 300px;
    }
    
    /* Link hover animations */
    nav ul li a {
        position: relative;
    }
    
    nav ul li a::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary);
        transition: width 0.3s ease;
    }
    
    nav ul li a:hover::before {
        width: 100%;
    }
    
    /* Card animations on mobile */
    .card {
        animation: cardSlideIn 0.5s ease-out;
    }
    
    .card:nth-child(1) { animation-delay: 0.1s; }
    .card:nth-child(2) { animation-delay: 0.2s; }
    .card:nth-child(3) { animation-delay: 0.3s; }
    
    @keyframes cardSlideIn {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Form input animations */
    .form-group input,
    .form-group select,
    .form-group textarea {
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        transform: scale(1.02);
        background: #fff;
    }
    
    /* Smooth scroll behavior */
    html {
        scroll-behavior: smooth;
    }
    
    /* Touch-friendly tap feedback */
    button:active,
    a:active {
        opacity: 0.8;
        transform: scale(0.98);
    }
    
    /* Smooth page transitions */
    body {
        animation: pageLoad 0.4s ease-out;
    }
    
    @keyframes pageLoad {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    
    /* Section animations */
    .section {
        animation: sectionFadeIn 0.6s ease-out;
    }
    
    @keyframes sectionFadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Staggered animations for grid items */
    .grid > * {
        animation: gridItemFadeIn 0.5s ease-out;
    }
    
    .grid > *:nth-child(1) { animation-delay: 0.1s; }
    .grid > *:nth-child(2) { animation-delay: 0.2s; }
    .grid > *:nth-child(3) { animation-delay: 0.3s; }
    .grid > *:nth-child(4) { animation-delay: 0.4s; }
    .grid > *:nth-child(5) { animation-delay: 0.5s; }
    .grid > *:nth-child(6) { animation-delay: 0.6s; }
    
    @keyframes gridItemFadeIn {
        from {
            opacity: 0;
            transform: scale(0.95);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }
    
    /* Smooth hover effects for cards */
    .card {
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    
    .card:active {
        transform: translateY(-8px) scale(0.98);
    }
    
    /* Smooth transitions for badges */
    .badge-deal {
        animation: badgePulse 0.6s ease-out;
    }
    
    @keyframes badgePulse {
        0% {
            transform: scale(0.8);
            opacity: 0;
        }
        50% {
            transform: scale(1.1);
        }
        100% {
            transform: scale(1);
            opacity: 1;
        }
    }
}

/* ==================== TABLET & LARGER SCREENS ==================== */
@media (min-width: 769px) {
    /* Smooth transitions for desktop */
    button,
    a,
    input,
    select,
    textarea {
        transition: all 0.3s ease;
    }
    
    /* Hover effects with smooth transitions */
    .card {
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    
    .card:hover {
        animation: cardHoverEffect 0.4s ease-out forwards;
    }
    
    @keyframes cardHoverEffect {
        from {
            transform: translateY(0);
            box-shadow: var(--shadow-sm);
        }
        to {
            transform: translateY(-12px);
            box-shadow: var(--shadow-lg);
        }
    }
}

/* ==================== ACCESSIBILITY & PERFORMANCE ==================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==================== SMOOTH SCROLLING ==================== */
html {
    scroll-behavior: smooth;
}

/* ==================== ENHANCED TRANSITIONS ==================== */
.btn-primary,
.btn-whatsapp,
.btn-white {
    position: relative;
    overflow: hidden;
}

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

.btn-primary:active::after,
.btn-whatsapp:active::after,
.btn-white:active::after {
    width: 300px;
    height: 300px;
}
