﻿
/* Advanced Micro-interactions */

/* Smooth parallax-like scroll effect for hero */
.hero-content {
    will-change: transform;
}

/* Elegant button press effect */
.btn:active {
    transform: translateY(0) scale(0.98);
    transition-duration: 0.1s;
}

/* Ripple effect on buttons */
.btn-primary::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-primary:hover::before {
    width: 300px;
    height: 300px;
}

/* Floating animation for WhatsApp button */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.floating-contact {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #25D366;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    z-index: 40;
    transition: transform var(--transition), box-shadow var(--transition);
    animation: float 3s ease-in-out infinite;
}
.floating-contact:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
    animation: none;
}
.floating-contact:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
    animation: none;
}



/* Smooth number counting animation */
.stat-chip .card-number {
    display: inline-block;
    transition: transform 0.3s ease;
}

.stat-chip:hover .card-number {
    transform: scale(1.05);
}


}

/* Smooth checkbox animation */
.checklist li span {
    transition: background 0.3s ease, transform 0.3s ease;
}

.checklist li:hover span {
    background: #e85d2c;
    transform: scale(1.1);
}

/* Card tilt effect on hover */
.trust-card, .event-card, .package-card {
    padding: 32px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line);
    transition: transform var(--transition);
}
.package-card:hover {
    transform: translateX(8px);
}



/* Smooth navigation indicator */
.nav a::after {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Pulse effect for CTA buttons */

    70% { box-shadow: 0 0 0 10px rgba(255, 107, 53, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0); }
}

.btn-primary:focus {
    animation: pulse 1.5s infinite;
}

/* Smooth FAQ accordion */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Elegant loading state */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.loading-shimmer {
    background: linear-gradient(90deg, 
        var(--surface) 25%, 
        rgba(255, 107, 53, 0.1) 50%, 
        var(--surface) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}


/* Interactive hover effects */
.nav a {
    position: relative;
    padding: 4px 0;
}

.nav a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff6b35;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Button magnetic effect */
.btn {
    position: relative;
    overflow: hidden;
}

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

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

/* Card border gradient effect */
.trust-card::before,
.event-card::before,
.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.3), 
        rgba(255, 107, 53, 0.1), 
        rgba(255, 107, 53, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trust-card:hover::before,
.event-card:hover::before,
.package-card:hover::before {
    opacity: 1;
}

/* Floating elements animation */
@keyframes floatSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    75% { transform: translateY(5px) rotate(-1deg); }
}

.hero-backdrop {
    animation: floatSlow 20s ease-in-out infinite;
}

/* Smooth text reveal */
.hero h1 {
    color: #9e6b24;
    font-size: 45px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(30px);
    animation: textReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.3s;
}

.hero-body {
    color: var(--ink-soft);
    opacity: 0;
    transform: translateY(20px);
    animation: textReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.5s;
}

@keyframes textReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Interactive checklist */
.checklist li {
    transition: transform 0.2s ease;
}

.checklist li:hover {
    transform: translateX(8px);
}

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand);
}



































.logo-wall img:hover {
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow-md);
}


.logo-wall img:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}









/* Logo item with name */
.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.logo-item img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    transition: transform var(--transition), box-shadow var(--transition);
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

.logo-item img:hover {
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow-md);
}

.logo-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ink-soft);
    text-align: center;
    line-height: 1.3;
}



