:root {
    --primary: #FF6B35;
    --secondary: #FF8C42;
    --accent: #FFC857;
    --dark: #2B2D42;
    --light: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    background: var(--light);
}

/* Floating Particles Background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 200, 87, 0.6);
    border-radius: 50%;
    animation: float 15s infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) translateX(100px); opacity: 0; }
}

/* Hero Section with Parallax */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    transform: translateZ(0);
    will-change: transform;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-bg-slide.active {
    opacity: 1;
}

.hero-bg-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.7), rgba(255, 200, 87, 0.5));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInDown 1s ease forwards 0.3s;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.7s;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.9s;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--secondary);
    transform: translateY(-5px) scale(1.05);
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: white;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

/* About Section with Reveal Animation */
.about-section {
    padding: 120px 5%;
    background: linear-gradient(180deg, #FFF5E6 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 200, 87, 0.2), transparent);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s ease;
}

.about-image-wrapper.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    transform: rotate(-5deg);
    transition: transform 0.5s ease;
}

.about-image:hover {
    transform: rotate(0deg) scale(1.05);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dark);
    box-shadow: 0 10px 30px rgba(255, 230, 109, 0.5);

}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-text {
    color: var(--dark);
    opacity: 0;
    transform: translateX(100px);
    transition: all 1s ease 0.3s;
}

.about-text.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-text h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    line-height: 1.3;
}

.about-text h1 span {
    color: var(--primary);
    display: block;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(43, 45, 66, 0.8);
}

.feature-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 200, 87, 0.1);
    border-radius: 15px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 200, 87, 0.2);
    transform: translateX(10px);
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.btn-explore {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.btn-explore:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.5);
}

/* Packages Section with Staggered Animation */
.packages-section {
    padding: 120px 5%;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF5E6 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    color: var(--dark);
}

.section-subtitle {
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 15px;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.2rem;
    color: rgba(43, 45, 66, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.package-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(50px);
}

.package-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.package-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.2);
    border-color: var(--primary);
}

.package-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.package-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.package-carousel-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.package-carousel-item.active {
    opacity: 1;
}

.package-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    z-index: 1;
}

.package-duration {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: var(--dark);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
}

.package-content {
    padding: 25px;
    color: var(--dark);
}

.package-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.package-description {
    color: rgba(43, 45, 66, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.package-highlights {
    list-style: none;
    margin-bottom: 25px;
}

.package-highlights li {
    padding: 8px 0;
    color: rgba(43, 45, 66, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.package-highlights i {
    color: var(--accent);
    font-size: 0.85rem;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.package-btn {
    padding: 10px 25px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.package-btn:hover {
    background: var(--secondary);
    transform: translateX(5px);
}

.btn-more {
    display: inline-block;
    margin-top: 60px;
    padding: 18px 50px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-more:hover {
    background: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

/* Gallery with Masonry Effect */
.gallery-section {
    padding: 120px 5%;
    background: #FFF5E6;
}

.testimonials-section {
    max-width: 1200px;
    margin: 100px auto 0;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-subtitle {
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 15px;
}

.testimonial-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    opacity: 0;
    transform: scale(0.9);
}

.testimonial-card.visible {
    opacity: 1;
    transform: scale(1);
}

.testimonial-card:hover {
    background: #FFFFFF;
    border-color: var(--primary);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
}

.testimonial-stars {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    color: rgba(43, 45, 66, 0.8);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h4 {
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info p {
    color: rgba(43, 45, 66, 0.6);
    font-size: 0.9rem;
}

.gallery-showcase {
    max-width: 900px;
    margin: 60px auto;
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.gallery-showcase-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.gallery-showcase-item.active {
    opacity: 1;
}

.gallery-showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    z-index: 1;
}

.gallery-showcase-label {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.gallery-showcase-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
}

.gallery-controls {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 15px;
    z-index: 2;
}

.gallery-control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 107, 107, 0.9);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-control-btn:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.gallery-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.gallery-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-indicator.active {
    background: var(--primary);
    width: 30px;
    border-radius: 6px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 60px auto 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    height: 350px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
}

.gallery-item.visible {
    opacity: 1;
    transform: scale(1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.9), rgba(255, 200, 87, 0.9));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.2) rotate(5deg);
}

.gallery-icon {
    font-size: 3rem;
    color: white;
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.gallery-item:hover .gallery-icon {
    transform: translateY(0);
}

.gallery-label {
    font-size: 1.5rem;
    color: white;
    font-weight: 600;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.2s;
}

.gallery-item:hover .gallery-label {
    transform: translateY(0);
}

/* Floating Navigation */
.navbar-float {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(255 255 255);

    backdrop-filter: blur(20px);
    padding: 6px 46px;
    border-radius: 50px;
    z-index: 1000;
    border: 1px solid rgba(255, 107, 53, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.8s ease;
    display: none;
}

@media (min-width: 992px) {
    .navbar-float {
        display: flex;
        align-items: center;
        gap: 40px;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translate(-50%, -50px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.navbar-float .nav-brand {
    font-size: 1.2rem;
    font-weight: 900;
    background: linear-gradient(45deg, #FF6B35, #FFC857);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
        text-align: -webkit-center;
}

.navbar-float .nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 20px 0px;
}

.navbar-float .nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-float .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.navbar-float .nav-links a:hover::after {
    width: 100%;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

@media (min-width: 992px) {
    .mobile-nav {
        display: none;
    }
}

.mobile-nav .nav-logo {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--primary);
}

.menu-toggle {
    background: none;
    border: none;
    color: var(--dark);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: calc(100vh - 60px);
    
    backdrop-filter: blur(20px);
    transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 999;
    padding: 30px 0;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 20px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    background: rgba(255, 107, 107, 0.1);
    border-left-color: var(--primary);
    padding-left: 40px;
}

.menu-overlay {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.5rem; }
    .section-title { font-size: 2.8rem; }
    .packages-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 0.9rem; letter-spacing: 2px; }
    .hero-description { font-size: 1.1rem; }
    .btn-hero { padding: 15px 35px; font-size: 1rem; }
    
    .about-container { 
        grid-template-columns: 1fr; 
        gap: 40px; 
    }
    .about-image { 
        transform: rotate(0); 
        margin-bottom: 20px;
    }
    .about-badge {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }
    .about-text h1 { font-size: 2.2rem; }
    .feature-highlights { grid-template-columns: 1fr; }
    
    .section-title { font-size: 2.2rem; }
    .section-description { font-size: 1rem; }
    
    .packages-grid { 
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .package-title { font-size: 1.4rem; }
    .package-image { height: 200px; }
    .package-content { padding: 20px; }
    
    .gallery-showcase {
        height: 350px;
        margin: 40px auto;
    }
    .gallery-showcase-label { font-size: 1.5rem; }
    .gallery-showcase-description { font-size: 0.95rem; }
    .gallery-controls {
        bottom: 20px;
        right: 20px;
    }
    .gallery-control-btn {
        width: 45px;
        height: 45px;
    }
    
    .gallery-grid { 
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .gallery-item { height: 280px; }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .about-section, .packages-section, .gallery-section {
        padding: 60px 5%;
    }
    .section-header { margin-bottom: 50px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .btn-hero { width: 100%; text-align: center; }
    
    .about-text h1 { font-size: 1.8rem; }
    .about-text p { font-size: 1rem; }
    
    .section-title { font-size: 1.8rem; }
    .package-content { padding: 18px; }
    .package-image { height: 180px; }
    
    .gallery-showcase {
        height: 280px;
    }
    .gallery-showcase-overlay {
        padding: 25px;
    }
    .gallery-showcase-label { font-size: 1.3rem; }
}


/* TripAdvisor Section Styles */
.tripadvisor-section {
    text-align: center;
    padding: 60px 20px;
    background-color: #f9f9f9; /* light background */
}

.tripadvisor-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

/* TripAdvisor badge */
.tripadvisor-section .tripadvisor-link img {
    width: 150px;
    max-width: 80%; /* ensures it scales down on small screens */
    height: auto;
    transition: transform 0.3s;
}

.tripadvisor-section .tripadvisor-link img:hover {
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tripadvisor-section {
        padding: 40px 15px;
    }
    .tripadvisor-section h2 {
        font-size: 1.5rem;
    }
    .tripadvisor-section .tripadvisor-link img {
        width: 120px;
    }
}

@media (max-width: 480px) {
    .tripadvisor-section {
        padding: 30px 10px;
    }
    .tripadvisor-section h2 {
        font-size: 1.3rem;
    }
    .tripadvisor-section .tripadvisor-link img {
        width: 100px;
    }
}
