:root {
    --primary-color: #FDC52C;
    --primary-hover: #E0AB1B;
    --text-dark: #1A1A1A;
    --text-gray: #666666;
    --bg-light: #F9F9F9;
    --bg-white: #FFFFFF;
    --radius-sm: 12px;
    --radius-lg: 24px;
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cherry Bomb One', cursive;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-dark);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #E0E0E0;
    color: var(--text-dark);
}

.btn-outline:hover {
    border-color: var(--text-dark);
}

.btn-white {
    background-color: var(--bg-white);
    color: var(--text-dark);
}

.btn-white:hover {
    background-color: #F0F0F0;
    transform: translateY(-2px);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    background-color: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cherry Bomb One', cursive;
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.mobile-only-btn {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background-color: var(--bg-light);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.badge {
    display: inline-block;
    background-color: #FFF3CD;
    color: #856404;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatars {
    display: flex;
}

.avatars img {
    border-radius: 50%;
    border: 3px solid var(--bg-white);
    margin-left: -10px;
}

.avatars img:first-child {
    margin-left: 0;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
}

.rating-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--bg-white);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-badge .star {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.rating-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.rating-label {
    font-size: 0.7rem;
    color: var(--text-gray);
    font-weight: 700;
    letter-spacing: 1px;
}

.rating-value {
    font-weight: 800;
    font-size: 1.1rem;
}

/* Features */
.features {
    padding: 80px 0;
}

.features-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.features-header h2 {
    font-size: 2.5rem;
}

.features-header .highlight {
    color: var(--primary-color);
}

.features-header p {
    color: var(--text-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: left;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.bg-yellow { background-color: #FFF9C4; color: #FBC02D; }
.bg-red { background-color: #FFCDD2; color: #E57373; }
.bg-green { background-color: #C8E6C9; color: #66BB6A; }

.feature-card h3 {
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Attractions */
.attractions {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.see-all {
    color: var(--primary-color);
    font-weight: 700;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.attraction-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    /* transition: 0.3s; */ /* Removed global transition to avoid glitch */
}

.attraction-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.attraction-info {
    padding: 20px 0;
}

.attraction-info h3 {
    margin-bottom: 5px;
}

.attraction-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.text-center { text-align: center; }

.stars {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 40px;
    letter-spacing: 5px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--radius-lg);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.user-info img {
    border-radius: 50%;
}

.user-info h4 {
    margin-bottom: 0;
    font-size: 1rem;
}

.user-role {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.quote {
    font-style: italic;
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
}

.cta-banner {
    background-color: var(--primary-color);
    border-radius: 30px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.cta-content {
    max-width: 600px;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Footer */
footer {
    padding: 80px 0 30px;
    background-color: var(--bg-white);
    border-top: 1px solid #eee;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    margin-bottom: 25px;
}

.footer-desc {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 20px 0;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

.footer-links li, .contact-list li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-gray);
}

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

.contact-list li {
    display: flex;
    gap: 10px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.map-wrapper {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.map-wrapper img {
    width: 100%;
    display: block;
}

.map-btn {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-white);
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    white-space: nowrap;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    color: var(--text-gray);
    font-size: 0.8rem;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
}

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

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 30px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-only-btn {
        display: block;
        margin-top: 15px;
        text-align: center;
    }

    .desktop-only-btn {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .social-proof {
        justify-content: center;
    }

    .hero-image-wrapper {
        margin-top: 30px;
    }

    .cta-banner {
        text-align: center;
        justify-content: center;
        padding: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}
