/* ==========================================
   Global Styles & Variables
========================================== */
:root {
    --color-cyan-300: #67e8f9;
    --color-cyan-400: #22d3ee;
    --color-cyan-500: #06b6d4;
    --color-cyan-600: #0891b2;
    --color-teal-300: #5eead4;
    --color-teal-500: #14b8a6;
    --color-teal-600: #0d9488;
    --color-orange-500: #f97316;
    --color-pink-400: #f472b6;
    --color-pink-500: #ec4899;
    --color-purple-500: #a855f7;
}

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

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: #fff;
}

html {
    scroll-behavior: smooth;
}

/* ==========================================
   Utility Classes
========================================== */
.gradient-text {
    background: linear-gradient(to right, var(--color-cyan-300), var(--color-teal-300), #bfdbfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-cyan {
    background: linear-gradient(to right, var(--color-cyan-600), var(--color-teal-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-light {
    background: linear-gradient(to right, var(--color-cyan-300), var(--color-teal-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-cyan-light {
    color: var(--color-cyan-300);
}

.text-pink {
    color: var(--color-pink-400);
}

.text-cyan {
    color: var(--color-cyan-400);
}

/* ==========================================
   Floating Icons Background
========================================== */
.floating-icons-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 10;
}

.floating-icon {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.2;
    animation: float 4s ease-in-out infinite;
}

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

/* ==========================================
   Hero Section
========================================== */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(6, 182, 212, 0.2), transparent, rgba(13, 148, 136, 0.4));
}

.tropical-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.tropical-icon {
    position: absolute;
    font-size: 3rem;
    filter: brightness(1.1) drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
    animation: tropicalFloat 3s ease-in-out infinite;
}

.tropical-icon:nth-child(1) { animation-delay: 0s; }
.tropical-icon:nth-child(2) { animation-delay: 0.8s; }
.tropical-icon:nth-child(3) { animation-delay: 1.6s; }
.tropical-icon:nth-child(4) { animation-delay: 2.4s; }
.tropical-icon:nth-child(5) { animation-delay: 3.2s; }

@keyframes tropicalFloat {
    0%, 100% { 
        transform: scale(1) rotate(0deg) translateY(0); 
        opacity: 0.6;
    }
    50% { 
        transform: scale(1.2) rotate(360deg) translateY(-10px); 
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 20;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.tag {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

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

.btn-gradient {
    background: linear-gradient(to right, var(--color-cyan-500), var(--color-teal-500));
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

.btn-gradient:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.4);
    color: white;
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    color: white;
}

.btn-fire {
    background: linear-gradient(to right, var(--color-orange-500), var(--color-pink-500));
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.btn-fire:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4);
    color: white;
}

.pulse-btn {
    animation: pulse 2s infinite;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    margin: 0.5rem auto 0;
}

.scroll-wheel {
    width: 4px;
    height: 12px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    margin-top: 8px;
    animation: scrollWheel 2s infinite;
}

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

@keyframes scrollWheel {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(16px); }
}

/* ==========================================
   Section Styles
========================================== */
section {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    margin-bottom: 4rem;
}

.section-emoji {
    font-size: 2.5rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
}

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

/* ==========================================
   Why Maldives Section
========================================== */
.why-maldives-section {
    background: linear-gradient(135deg, #ecfeff 0%, #ffffff 50%, #f0fdfa 100%);
    position: relative;
    overflow: hidden;
}

.reason-card {
    height: 100%;
    transition: all 0.5s ease;
    cursor: pointer;
    border: none;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.reason-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.reason-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
}

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

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

.reason-icon-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.reason-overlay {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.reason-card:hover .reason-overlay {
    opacity: 0.6;
}

/* ==========================================
   Experiences Section
========================================== */
.experiences-section {
    background: linear-gradient(135deg, #0f766e 0%, #0891b2 50%, #1e40af 100%);
    position: relative;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    padding: 2rem 0;
}

.experiences-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem;
    scrollbar-width: none;
}

.experiences-carousel::-webkit-scrollbar {
    display: none;
}

.experience-card {
    flex: 0 0 380px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.experience-card:hover {
    transform: scale(1.05);
}

.experience-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.experience-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.experience-price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #10b981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 1rem;
}

.carousel-next {
    right: 1rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    width: 32px;
    border-radius: 6px;
    background: var(--color-cyan-300);
}

/* ==========================================
   Accommodations Section
========================================== */
.accommodations-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ecfeff 50%, #f0fdfa 100%);
    overflow: hidden;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--color-cyan-200);
    background: transparent;
    color: var(--color-cyan-700);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(to right, var(--color-cyan-500), var(--color-teal-500));
    color: white;
    border-color: transparent;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(6, 182, 212, 0.3);
}

.accommodation-card {
    height: 100%;
    transition: all 0.5s ease;
    cursor: pointer;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.accommodation-card:hover {
    transform: translateY(-10px) rotateY(2deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.accommodation-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.accommodation-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.accommodation-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.accommodation-rating {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0.75rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.accommodation-price {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: #10b981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* ==========================================
   Gallery Section
========================================== */
.gallery-section {
    background: linear-gradient(135deg, #1f2937 0%, #0f172a 50%, #0e7490 100%);
    position: relative;
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

.gallery-item.span-2x2 {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.span-1x2 {
    grid-row: span 2;
}

.gallery-item.span-2x1 {
    grid-column: span 2;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    min-height: 200px;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

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

.gallery-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-subtitle {
    color: var(--color-cyan-200);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lightbox-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

#lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

/* ==========================================
   Testimonials Section
========================================== */
.testimonials-section {
    background: linear-gradient(135deg, #ecfeff 0%, #dbeafe 50%, #f0fdfa 100%);
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    height: 100%;
    transition: all 0.5s ease;
    cursor: pointer;
    border: none;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.star-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star-icon {
    color: #fbbf24;
    font-size: 1.25rem;
}

.testimonial-quote {
    font-style: italic;
    color: #374151;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 3rem;
    color: var(--color-cyan-300);
    line-height: 1;
}

.testimonial-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: white;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ecfeff, #f0fdfa);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.online-indicator {
    position: absolute;
    top: 0;
    right: 0;
    width: 14px;
    height: 14px;
    background: #10b981;
    border-radius: 50%;
    border: 2px solid white;
    animation: pulse-green 2s infinite;
}

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

.cta-box {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

/* ==========================================
   Plan Your Trip Section
========================================== */
.plan-trip-section {
    background: linear-gradient(135deg, #0f766e 0%, #0891b2 50%, #1e40af 100%);
    position: relative;
    overflow: hidden;
}

.limited-offer {
    background: linear-gradient(to right, var(--color-orange-500), var(--color-pink-500));
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
    animation: pulse 2s infinite;
}

.package-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.package-card:hover,
.package-card.selected {
    border-color: var(--color-cyan-400);
    box-shadow: 0 15px 40px rgba(34, 211, 238, 0.3);
    transform: scale(1.02);
}

.package-popular-badge {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    background: linear-gradient(to right, var(--color-orange-500), var(--color-pink-500));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.package-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.package-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.package-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-cyan-100);
    font-size: 0.875rem;
}

.package-feature-dot {
    width: 8px;
    height: 8px;
    background: var(--color-cyan-400);
    border-radius: 50%;
}

.package-selected-indicator {
    display: none;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #6ee7b7;
}

.package-card.selected .package-selected-indicator {
    display: flex;
}

.booking-form-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.glass-input,
.form-select.glass-input {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
}

.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.glass-input:focus,
.form-select.glass-input:focus {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--color-cyan-400);
    color: white;
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.2);
}

.form-select.glass-input option {
    background: #0891b2;
    color: white;
}

.selected-package-box {
    background: rgba(6, 182, 212, 0.2);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 0.75rem;
    padding: 1rem;
}

.selected-package-box .package-name {
    color: white;
    font-weight: 600;
}

.book-btn {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.book-btn:hover {
    transform: scale(1.02);
}

/* ==========================================
   Footer
========================================== */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 2rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--color-cyan-500);
    transform: scale(1.1);
}

/* ==========================================
   Animation Utilities
========================================== */
.rotate-emoji {
    display: inline-block;
    animation: rotate 4s linear infinite;
}

.rotate-emoji-reverse {
    display: inline-block;
    animation: rotate-reverse 4s linear infinite;
}

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

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

.float-emoji {
    display: inline-block;
    animation: floatEmoji 3s ease-in-out infinite;
}

@keyframes floatEmoji {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.2); }
}

/* ==========================================
   Responsive Design
========================================== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .filter-buttons {
        flex-direction: column;
    }
    
    .filter-btn {
        width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.span-2x2,
    .gallery-item.span-1x2,
    .gallery-item.span-2x1 {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .experience-card {
        flex: 0 0 300px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-emoji {
        font-size: 2rem;
    }
    
    .tropical-icon {
        font-size: 2rem;
    }
    
    .cta-box {
        padding: 2rem 1.5rem;
    }
}