/* ==========================================
   Thailand Tourism & Packages - Custom Styles
   ========================================== */

/* CSS Variables */
:root {
    --color-turquoise: #20B2AA;
    --color-emerald: #00CED1;
    --color-gold: #FFD700;
    --color-coral: #FF7F50;
    --color-orange: #FFA500;
    --color-cream: #FFF8DC;
    --color-light-cyan: #E0F2F1;
    --color-peach: #FFE4B5;
    --color-dark: #2C3E50;
    --color-dark-2: #34495E;
    --font-primary: 'Poppins', sans-serif;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    overflow-x: hidden;
    color: #333;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

/* Gradient Text Utilities */
.gradient-text-1 {
    background: linear-gradient(to right, var(--color-turquoise), var(--color-coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-2 {
    background: linear-gradient(to right, var(--color-gold), var(--color-coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-3 {
    background: linear-gradient(to right, var(--color-coral), var(--color-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================
   NAVIGATION
   ========================================== */
#mainNav {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
    animation: slideDown 0.8s ease 1s backwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.brand-flag {
    font-size: 2rem;
}

.brand-title {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--color-turquoise), var(--color-coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: #666;
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-coral) !important;
}

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

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

.btn-book-now {
    padding: 0.5rem 1.5rem;
    background: linear-gradient(to right, var(--color-gold), var(--color-coral));
    color: white !important;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-book-now:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 127, 80, 0.4);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-turquoise), var(--color-emerald), var(--color-coral));
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(32, 178, 170, 0.6), transparent, rgba(255, 127, 80, 0.6));
}

.floating-icon {
    position: absolute;
    font-size: 3rem;
    z-index: 10;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(-10px) rotate(-5deg);
    }
    50% {
        transform: translateY(10px) rotate(5deg);
    }
}

.hero-content {
    position: relative;
    z-index: 20;
    text-align: center;
    max-width: 1000px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 4rem;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.btn-hero {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: pulse-glow 2s ease-in-out infinite;
}

.btn-hero-1 {
    background: linear-gradient(to right, var(--color-turquoise), var(--color-emerald));
}

.btn-hero-2 {
    background: linear-gradient(to right, var(--color-gold), var(--color-orange));
}

.btn-hero-3 {
    background: linear-gradient(to right, var(--color-coral), #FF6347);
}

.btn-hero:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(255, 255, 255, 0.4);
    color: white;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    z-index: 20;
    text-align: center;
    animation: bounce 1.5s ease-in-out infinite;
}

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

.scroll-arrow {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.scroll-text {
    font-size: 0.875rem;
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeInUp 1s ease forwards;
}

.animate-fade-in-delay {
    animation: fadeInUp 1s ease 0.3s backwards;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 1s ease 0.6s backwards;
}

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

/* ==========================================
   SECTION UTILITIES
   ========================================== */
.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.section-description {
    font-size: 1.25rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* Scroll Animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   WHY VISIT SECTION
   ========================================== */
.section-why-visit {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-light-cyan), #FFF3E0);
}

.reason-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 4px solid transparent;
    height: 100%;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, rgba(32, 178, 170, 0.2), rgba(255, 127, 80, 0.2));
    border-radius: 50%;
}

.reason-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.3);
}

.reason-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1rem;
    animation: bounce-icon 0.6s ease;
}

@keyframes bounce-icon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.reason-title {
    font-size: 1.25rem;
    text-align: center;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.reason-description {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
}

.reason-hover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-turquoise), var(--color-coral));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-radius: 1.5rem;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    pointer-events: none;
}

.reason-card:hover .reason-hover-overlay {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.reason-hover-content {
    text-align: center;
}

.reason-hover-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.reason-hover-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.reason-hover-fact {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* ==========================================
   DESTINATIONS SECTION
   ========================================== */
.section-destinations {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255, 127, 80, 0.1), rgba(32, 178, 170, 0.1));
}

.destination-carousel-wrapper {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.destination-slide {
    position: relative;
    height: 500px;
}

.destination-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.destination-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: white;
    max-width: 1000px;
    margin: 0 auto;
}

.destination-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.destination-name {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.destination-description {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 1.5rem;
}

.destination-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.highlight-badge {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.carousel-control-prev,
.carousel-control-next {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.carousel-control-prev {
    left: 1rem;
}

.carousel-control-next {
    right: 1rem;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.carousel-indicators-custom {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.carousel-indicators-custom button {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicators-custom button.active {
    background: var(--color-coral);
    transform: scale(1.25);
}

.destination-thumb {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    aspect-ratio: 1;
}

.destination-thumb:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.destination-thumb.active {
    box-shadow: 0 0 0 4px var(--color-coral);
    transform: scale(1.05);
}

.destination-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destination-thumb:hover img {
    transform: scale(1.1);
}

.destination-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.destination-thumb-name {
    position: absolute;
    bottom: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
}

/* ==========================================
   PACKAGES SECTION
   ========================================== */
.section-packages {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 127, 80, 0.1), rgba(32, 178, 170, 0.2));
    position: relative;
    overflow: hidden;
}

.bg-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bg-emoji {
    position: absolute;
    font-size: 6rem;
    opacity: 0.05;
}

.pulse-animation {
    animation: pulse-text 3s ease-in-out infinite;
}

@keyframes pulse-text {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.package-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.package-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.package-card-a {
    border: 4px solid rgba(255, 215, 0, 0.3);
}

.package-card-b {
    border: 4px solid rgba(32, 178, 170, 0.3);
}

.package-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 5rem;
    height: 5rem;
    background: linear-gradient(to bottom left, var(--color-gold), var(--color-coral));
    border-bottom-left-radius: 50%;
}

.package-corner-b {
    background: linear-gradient(to bottom left, var(--color-turquoise), var(--color-emerald));
}

.package-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
}

.package-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--color-coral);
}

.package-card-b .package-title {
    color: var(--color-turquoise);
}

.package-subtitle {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
}

.pricing-tiers {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-tier {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 0.75rem;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.pricing-tier:hover {
    transform: scale(1.02);
}

.pricing-tier-highlight {
    background: linear-gradient(to right, rgba(255, 215, 0, 0.2), rgba(255, 127, 80, 0.2));
    border: 2px solid var(--color-gold);
}

.tier-guests {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.tier-guests i {
    color: var(--color-turquoise);
}

.tier-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
}

.pricing-tier-highlight .tier-price {
    color: var(--color-coral);
}

.package-b-pricing {
    text-align: center;
    padding: 3rem 0;
}

.package-b-main-price {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(to right, var(--color-turquoise), var(--color-emerald));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.package-b-per-person {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.package-b-addon {
    font-size: 1.125rem;
    color: var(--color-coral);
}

.package-b-note {
    font-size: 0.875rem;
    color: #999;
    margin-top: 0.5rem;
}

/* Inclusions & Exclusions */
.inclusions-card,
.exclusions-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.inclusions-title {
    font-size: 1.5rem;
    color: var(--color-turquoise);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.inclusions-title i {
    color: #28a745;
}

.exclusions-title {
    font-size: 1.5rem;
    color: var(--color-coral);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.exclusions-title i {
    color: #dc3545;
}

.inclusions-list,
.exclusions-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.inclusion-item,
.exclusion-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.inclusion-item:hover {
    background: rgba(40, 167, 69, 0.05);
    transform: translateX(5px);
}

.exclusion-item:hover {
    background: rgba(220, 53, 69, 0.05);
}

.inclusion-icon,
.exclusion-icon {
    font-size: 1.5rem;
}

.exclusion-icon {
    opacity: 0.6;
}

.exclusion-text {
    text-decoration: line-through;
    text-decoration-color: rgba(220, 53, 69, 0.5);
    text-decoration-thickness: 2px;
}

/* CTA Button */
.btn-cta {
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--color-coral), var(--color-gold));
    color: white;
    border-radius: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 127, 80, 0.4);
}

.btn-cta:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 127, 80, 0.5);
    color: white;
}

.pulse-glow {
    animation: pulse-glow-anim 2s ease-in-out infinite;
}

@keyframes pulse-glow-anim {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(255, 127, 80, 0.4);
    }
    50% {
        box-shadow: 0 10px 50px rgba(255, 215, 0, 0.6);
    }
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #666;
}

/* ==========================================
   CUISINE SECTION
   ========================================== */
.section-cuisine {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-cream), var(--color-peach));
    position: relative;
    overflow: hidden;
}

.bg-decoration-food {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bg-food-emoji {
    position: absolute;
    font-size: 8rem;
    opacity: 0.05;
}

.cuisine-hero-card {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    aspect-ratio: 16/9;
}

.cuisine-hero-card:hover {
    transform: scale(1.02) translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.cuisine-hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cuisine-hero-card:hover img {
    transform: scale(1.1);
}

.cuisine-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.cuisine-hero-content {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    color: white;
}

.cuisine-hero-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.cuisine-hero-content p {
    font-size: 1.125rem;
    opacity: 0.9;
}

.dish-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.dish-card::before {
    content: '';
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 127, 80, 0.2));
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.dish-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.dish-card:hover::before {
    transform: scale(1.5);
}

.dish-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.bounce-animation {
    animation: bounce-dish 3s ease-in-out infinite;
}

@keyframes bounce-dish {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.1) rotate(5deg);
    }
    75% {
        transform: scale(1.1) rotate(-5deg);
    }
}

.dish-name {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #333;
    transition: color 0.3s ease;
}

.dish-card:hover .dish-name {
    color: var(--color-coral);
}

.dish-description {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.dish-spice-level {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
}

.spice-icon {
    font-size: 1.125rem;
    animation: bounce-spice 0.8s ease-in-out infinite;
}

.spice-icon:nth-child(1) {
    animation-delay: 0s;
}

.spice-icon:nth-child(2) {
    animation-delay: 0.1s;
}

.spice-icon:nth-child(3) {
    animation-delay: 0.2s;
}

.spice-icon:nth-child(4) {
    animation-delay: 0.3s;
}

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

.food-cta-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    margin: 0 auto;
}

.food-cta-title {
    font-size: 2rem;
    color: var(--color-coral);
    margin-bottom: 1rem;
}

.food-cta-description {
    color: #666;
    margin-bottom: 1.5rem;
}

.btn-food-cta {
    padding: 1rem 2rem;
    background: linear-gradient(to right, var(--color-gold), var(--color-coral));
    color: white;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-food-cta:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 127, 80, 0.4);
    color: white;
}

/* ==========================================
   GALLERY SECTION
   ========================================== */
.section-gallery {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(32, 178, 170, 0.1), rgba(255, 215, 0, 0.1));
}

.gallery-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    color: white;
    font-size: 0.875rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.section-testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-cream), var(--color-light-cyan));
}

.testimonial-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-avatar {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--color-turquoise), var(--color-coral));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.testimonial-name {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.testimonial-location {
    font-size: 0.875rem;
    color: #999;
    margin-bottom: 1rem;
}

.testimonial-review {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-rating {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.testimonial-reactions {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.5rem;
}

.reaction-emoji {
    animation: reaction-bounce 2s ease-in-out infinite;
}

.reaction-emoji:nth-child(1) {
    animation-delay: 0s;
}

.reaction-emoji:nth-child(2) {
    animation-delay: 0.3s;
}

.reaction-emoji:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes reaction-bounce {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.2) rotate(10deg);
    }
    75% {
        transform: scale(1.2) rotate(-10deg);
    }
}

/* ==========================================
   FOOTER / CONTACT SECTION
   ========================================== */
.section-footer {
    padding: 5rem 0 2rem;
    background: linear-gradient(135deg, var(--color-dark), var(--color-dark-2), var(--color-dark));
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.footer-emoji {
    position: absolute;
    font-size: 6rem;
    opacity: 0.05;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-form-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

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

.contact-form label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form textarea.form-control {
    resize: none;
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(to right, var(--color-gold), var(--color-coral));
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-submit:hover {
    transform: scale(1.02) translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 127, 80, 0.4);
}

.contact-info-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(to right, var(--color-gold), var(--color-coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-info-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px) scale(1.02);
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.contact-icon-phone {
    background: rgba(32, 178, 170, 0.2);
    color: var(--color-turquoise);
}

.contact-icon-whatsapp {
    background: rgba(37, 211, 102, 0.2);
    color: #25D366;
}

.contact-icon-email {
    background: rgba(255, 127, 80, 0.2);
    color: var(--color-coral);
}

.contact-icon-location {
    background: rgba(255, 215, 0, 0.2);
    color: var(--color-gold);
}

.contact-info-item:hover .contact-icon {
    transform: scale(1.1);
}

.contact-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.contact-value {
    font-size: 1.125rem;
    color: white;
    margin: 0;
}

.social-media-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-title {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1) translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
}

.social-facebook:hover {
    color: #1877f2;
}

.social-instagram:hover {
    color: #e4405f;
}

.social-twitter:hover {
    color: #1da1f2;
}

.social-youtube:hover {
    color: #ff0000;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    gap: 1rem;
}

.footer-copyright {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-flag {
    font-size: 1.5rem;
}

.footer-copyright p {
    margin: 0;
    font-size: 0.875rem;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-tagline {
    text-align: center;
    margin-top: 1.5rem;
}

.footer-tagline p {
    color: var(--color-gold);
    font-size: 0.875rem;
    margin: 0;
    animation: fade-pulse 2s ease-in-out infinite;
}

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

/* ==========================================
   WHATSAPP FLOAT BUTTON
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 4rem;
    height: 4rem;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: whatsapp-bounce 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    color: white;
}

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

/* ==========================================
   RESPONSIVE STYLES
   ========================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .destination-name {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .destination-name {
        font-size: 2rem;
    }
    
    .destination-description {
        font-size: 1rem;
    }
    
    .floating-icon {
        font-size: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 575px) {
    .section-header {
        margin-bottom: 2rem;
    }
    
    .package-card {
        padding: 1.5rem;
    }
    
    .cuisine-hero-content h3 {
        font-size: 1.5rem;
    }
    
    .whatsapp-float {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.75rem;
    }
}