/* ===================================
   Creative Animations & Transitions
   Enhanced Luxury Effects
   =================================== */

/* ===== Smooth Page Load Animation ===== */
@keyframes pageLoadFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    animation: pageLoadFadeIn 0.8s ease-out;
}

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

/* ===== Shine Effect ===== */
@keyframes shine {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* ===== Pulse Glow ===== */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(201, 169, 97, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(201, 169, 97, 0.6);
    }
}

/* ===== Scale In ===== */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== Slide In From Left ===== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== Slide In From Right ===== */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== Slide In From Bottom ===== */
@keyframes slideInBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Rotate In ===== */
@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

/* ===== Gradient Animation ===== */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* ===== Enhanced Service Cards ===== */
.service-card {
    position: relative;
    overflow: hidden;
    animation: slideInBottom 0.6s ease-out;
    animation-fill-mode: both;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(201, 169, 97, 0.1),
        transparent
    );
    transition: var(--transition-smooth);
}

.service-card:hover::before {
    left: 100%;
    transition: left 0.8s ease;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

/* ===== Destination Cards Creative Effects ===== */
.destination-card {
    position: relative;
    animation: scaleIn 0.6s ease-out;
    animation-fill-mode: both;
}

.destination-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(201, 169, 97, 0.2),
        transparent 50%
    );
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.destination-card:hover::after {
    opacity: 1;
}

.destination-card:nth-child(1) { animation-delay: 0.1s; }
.destination-card:nth-child(2) { animation-delay: 0.2s; }
.destination-card:nth-child(3) { animation-delay: 0.3s; }
.destination-card:nth-child(4) { animation-delay: 0.4s; }
.destination-card:nth-child(5) { animation-delay: 0.5s; }
.destination-card:nth-child(6) { animation-delay: 0.6s; }

.destination-name {
    transform: translateY(0);
    transition: var(--transition-smooth);
}

.destination-card:hover .destination-name {
    transform: translateY(-10px);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* ===== Animated Dividers ===== */
.section-divider {
    position: relative;
    overflow: hidden;
}

.section-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.5),
        transparent
    );
    animation: shine 3s infinite;
}

/* ===== Button Enhancements ===== */
.btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--color-champagne), var(--color-champagne-dark));
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

.btn-primary:hover {
    animation: pulseGlow 1.5s infinite, gradientShift 3s ease infinite;
}

/* ===== Logo Animation ===== */
.logo-image {
    filter: drop-shadow(0 2px 8px rgba(201, 169, 97, 0.3));
    transition: var(--transition-elegant);
}

.logo:hover .logo-image {
    filter: drop-shadow(0 4px 16px rgba(201, 169, 97, 0.5));
    transform: scale(1.05) rotate(2deg);
}

/* ===== Scroll Indicator Enhanced ===== */
.scroll-indicator {
    animation: float 2s ease-in-out infinite;
}

/* ===== Hero Content Animations ===== */
.hero-title {
    animation: slideInLeft 1s ease-out 0.3s both;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-champagne), transparent);
    animation: expandWidth 1.5s ease-out 1s forwards;
}

@keyframes expandWidth {
    to {
        width: 100%;
    }
}

.hero-subtitle {
    animation: slideInRight 1s ease-out 0.6s both;
}

.hero-buttons {
    animation: slideInBottom 1s ease-out 0.9s both;
}

/* ===== Feature Items Stagger Animation ===== */
.feature-item {
    animation: slideInLeft 0.6s ease-out;
    animation-fill-mode: both;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }
.feature-item:nth-child(5) { animation-delay: 0.5s; }

.feature-icon-small {
    transition: var(--transition-bounce);
}

.feature-item:hover .feature-icon-small {
    transform: scale(1.2) rotate(360deg);
    background: linear-gradient(135deg, var(--color-champagne), var(--color-champagne-dark));
}

/* ===== Stats Counter Animation ===== */
.trust-stat {
    animation: scaleIn 0.8s ease-out;
    animation-fill-mode: both;
    transition: var(--transition-smooth);
}

.trust-stat:nth-child(1) { animation-delay: 0.2s; }
.trust-stat:nth-child(2) { animation-delay: 0.4s; }
.trust-stat:nth-child(3) { animation-delay: 0.6s; }
.trust-stat:nth-child(4) { animation-delay: 0.8s; }

.trust-stat:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.stat-number {
    background: linear-gradient(135deg, var(--color-champagne), var(--color-champagne-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

/* ===== Testimonial Enhancements ===== */
.testimonial {
    animation: scaleIn 1s ease-out;
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.05) 0%, transparent 70%);
    animation: rotateGradient 20s linear infinite;
}

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

.testimonial-quote {
    animation: float 3s ease-in-out infinite;
}

/* ===== Nav Menu Enhancements ===== */
.nav-link {
    position: relative;
}

.nav-link::after {
    transition: var(--transition-elegant);
    transform-origin: left;
}

.nav-link:hover::after {
    animation: shine 1.5s ease-in-out;
}

/* ===== Footer Animation ===== */
.footer {
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--color-champagne),
        transparent
    );
    animation: shine 3s linear infinite;
}

/* ===== Social Links Animation ===== */
.social-link {
    transition: var(--transition-bounce);
    position: relative;
}

.social-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--color-champagne);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition-smooth);
    z-index: -1;
    opacity: 0.2;
}

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

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
}

/* ===== Image Hover Effects ===== */
.feature-img,
.corporate-intro-image img,
.benefits-image img,
.about-hero-image img {
    transition: var(--transition-elegant);
    position: relative;
}

.feature-img:hover,
.corporate-intro-image img:hover,
.benefits-image img:hover,
.about-hero-image img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
    filter: brightness(1.1);
}

/* ===== Package Cards Enhanced ===== */
.package-card {
    animation: slideInBottom 0.8s ease-out;
    animation-fill-mode: both;
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: var(--transition-smooth);
}

.package-card:hover::before {
    transform: scale(1);
}

.package-card:nth-child(1) { animation-delay: 0.2s; }
.package-card:nth-child(2) { animation-delay: 0.4s; }
.package-card:nth-child(3) { animation-delay: 0.6s; }

/* ===== Value Cards Creative ===== */
.value-card {
    animation: rotateIn 0.8s ease-out;
    animation-fill-mode: both;
    position: relative;
}

.value-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-champagne), var(--color-champagne-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-elegant);
}

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

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }
.value-card:nth-child(5) { animation-delay: 0.5s; }
.value-card:nth-child(6) { animation-delay: 0.6s; }

.value-icon {
    transition: var(--transition-bounce);
}

.value-card:hover .value-icon {
    transform: rotateY(360deg) scale(1.1);
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.2), rgba(201, 169, 97, 0.1));
}

/* ===== Form Enhancements ===== */
.form-input,
.form-textarea,
.form-select {
    transition: var(--transition-smooth);
    position: relative;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.2);
}

/* ===== Contact Details Animation ===== */
.contact-detail {
    animation: slideInLeft 0.6s ease-out;
    animation-fill-mode: both;
    transition: var(--transition-smooth);
}

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

.contact-detail:hover {
    transform: translateX(10px);
}

.contact-icon {
    transition: var(--transition-bounce);
}

.contact-detail:hover .contact-icon {
    transform: scale(1.2) rotate(360deg);
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.3), rgba(201, 169, 97, 0.1));
}

/* ===== Benefits Number Enhanced ===== */
.benefit-number {
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.benefit-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-smooth);
}

.benefit-item:hover .benefit-number::before {
    left: 100%;
}

.benefit-item:hover .benefit-number {
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

/* ===== Industry Cards ===== */
.industry-card {
    animation: scaleIn 0.6s ease-out;
    animation-fill-mode: both;
    position: relative;
}

.industry-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(to top, rgba(201, 169, 97, 0.1), transparent);
    transition: var(--transition-smooth);
}

.industry-card:hover::before {
    height: 100%;
}

.industry-card:nth-child(1) { animation-delay: 0.1s; }
.industry-card:nth-child(2) { animation-delay: 0.2s; }
.industry-card:nth-child(3) { animation-delay: 0.3s; }
.industry-card:nth-child(4) { animation-delay: 0.4s; }
.industry-card:nth-child(5) { animation-delay: 0.5s; }
.industry-card:nth-child(6) { animation-delay: 0.6s; }

/* ===== Page Header Animation ===== */
.page-header {
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.1), transparent);
    animation: shine 3s infinite;
}

.page-header-content {
    animation: slideInBottom 0.8s ease-out;
}

/* ===== Experience Cards ===== */
.experience-card {
    animation: scaleIn 0.8s ease-out;
    animation-fill-mode: both;
}

.experience-card:nth-child(1) { animation-delay: 0.2s; }
.experience-card:nth-child(2) { animation-delay: 0.4s; }
.experience-card:nth-child(3) { animation-delay: 0.6s; }
.experience-card:nth-child(4) { animation-delay: 0.8s; }

.experience-tag {
    transition: var(--transition-bounce);
}

.experience-card:hover .experience-tag {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.4);
}

/* ===== Signature Services ===== */
.signature-service {
    animation: slideInBottom 0.6s ease-out;
    animation-fill-mode: both;
    transition: var(--transition-smooth);
}

.signature-service:nth-child(1) { animation-delay: 0.1s; }
.signature-service:nth-child(2) { animation-delay: 0.2s; }
.signature-service:nth-child(3) { animation-delay: 0.3s; }
.signature-service:nth-child(4) { animation-delay: 0.4s; }
.signature-service:nth-child(5) { animation-delay: 0.5s; }
.signature-service:nth-child(6) { animation-delay: 0.6s; }

.signature-service:hover {
    transform: translateY(-10px);
}

.signature-icon {
    position: relative;
    overflow: hidden;
}

.signature-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.signature-service:hover .signature-icon::after {
    animation: shine 0.8s ease;
}

/* ===== Corporate Service Cards ===== */
.corporate-service-card {
    animation: slideInLeft 0.6s ease-out;
    animation-fill-mode: both;
    position: relative;
    overflow: hidden;
}

.corporate-service-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--color-champagne), var(--color-champagne-dark));
    transform: scaleY(0);
    transform-origin: bottom;
    transition: var(--transition-elegant);
}

.corporate-service-card:hover::after {
    transform: scaleY(1);
    transform-origin: top;
}

.corporate-service-card:nth-child(1) { animation-delay: 0.1s; }
.corporate-service-card:nth-child(2) { animation-delay: 0.2s; }
.corporate-service-card:nth-child(3) { animation-delay: 0.3s; }
.corporate-service-card:nth-child(4) { animation-delay: 0.4s; }
.corporate-service-card:nth-child(5) { animation-delay: 0.5s; }
.corporate-service-card:nth-child(6) { animation-delay: 0.6s; }

.corporate-service-icon {
    transition: var(--transition-bounce);
}

.corporate-service-card:hover .corporate-service-icon {
    transform: scale(1.1) rotate(360deg);
}