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

:root {
    --primary-color: #0a4d3c;
    --secondary-color: #d4af37;
    --accent-color: #c17817;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --bg-light: #faf9f6;
    --bg-dark: #0d0d0d;
    --shadow: rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px var(--shadow);
    padding: 1rem 5%;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-links a {
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

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

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

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

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--text-light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar.scrolled .hamburger span {
    background: var(--text-dark);
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slider {
    position: absolute;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 77, 60, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    color: var(--text-light);
    max-width: 900px;
    padding: 0 1.5rem;
    width: 100%;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    line-height: 1.3;
}

.hero-content p {
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 0.95;
    line-height: 1.6;
}

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

.btn {
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: clamp(0.75rem, 2vw, 0.9rem);
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--text-dark);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--text-dark);
    transform: translateY(-3px);
}

/* SOCIAL MEDIA BAR */
.social-media-bar {
    padding: 2.5rem 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.social-media-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.social-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.social-icons-bar {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-icon-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.social-icon-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(10, 77, 60, 0.3);
    border-color: var(--secondary-color);
}

.social-icon-link svg {
    width: 24px;
    height: 24px;
}

/* ABOUT SECTION */
.about {
    padding: 8rem 5%;
    background: var(--bg-light);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-video {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow);
}

.about-video video {
    width: 100%;
    height: auto;
    display: block;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 4vw, 3rem);
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* DESTINATIONS SECTION */
.destinations {
    padding: 8rem 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-title p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.destinations-slider {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    padding: 2rem 0;
}

.destinations-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.destination-card {
    /* Desktop: 3 cards visible — (100% - 2 gaps) / 3 */
    min-width: calc((100% - 4rem) / 3);
    max-width: calc((100% - 4rem) / 3);
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
    transition: all 0.4s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.destination-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.destination-info {
    padding: 2rem;
}

.destination-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.destination-info p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.destination-info .btn-discover {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.destination-info .btn-discover:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
    transform: scale(1.1);
}

/* GALLERY SECTION */
.gallery {
    padding: 8rem 5%;
    background: var(--bg-light);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 2rem;
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 8px 30px var(--shadow);
    transition: transform 0.4s ease;
}

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

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

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

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .overlay {
    transform: translateY(0);
}

.overlay h4 {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    line-height: 1.3;
}

/* SEE MORE BUTTON */
.see-more-container {
    text-align: center;
    margin-top: 4rem;
}

.btn-see-more {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px var(--shadow);
    letter-spacing: 0.5px;
}

.btn-see-more:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

/* AUTHOR SECTION */
.author {
    padding: 8rem 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a3d2f 100%);
    color: var(--text-light);
}

.author-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.author-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    border: 5px solid var(--secondary-color);
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

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

.author-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.author-container .subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-weight: 300;
}

.author-container p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.social-links a {
    width: 50px;
    height: 50px;
    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.3rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-links a:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

/* CONTACT SECTION */
.contact {
    padding: 8rem 5%;
    background: var(--bg-light);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.contact-info p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-item strong {
    font-size: 1rem;
}

.contact-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px var(--shadow);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(10, 77, 60, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* FORM MESSAGE */
.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
    display: block;
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* FOOTER */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 4rem 5% 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Scroll reveal animation - disabled for better compatibility */
.reveal {
    opacity: 1;
    transform: translateY(0);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */

/* --- BACK TO TOP (bottom-left, MOBILE ONLY) --- */
.back-to-top {
    display: none;
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(10, 77, 60, 0.4);
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
}

.back-to-top:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(10, 77, 60, 0.5);
}

/* --- WHATSAPP BUTTON (bottom-right) --- */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #25c554;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(37, 197, 84, 0.45);
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    animation: floatBob 3s ease-in-out infinite;
}

.floating-whatsapp:hover {
    background: #1da44a;
    box-shadow: 0 6px 22px rgba(37, 197, 84, 0.55);
    animation: none;
    transform: translateY(-3px) scale(1.08);
}

/* --- SHARE BUTTON (bottom-right, above WhatsApp) --- */
.floating-share {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--text-dark);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    animation: floatBob 3s ease-in-out 1.5s infinite;
}

.floating-share:hover {
    background: var(--accent-color);
    color: white;
    box-shadow: 0 6px 22px rgba(212, 175, 55, 0.5);
    animation: none;
    transform: translateY(-3px) scale(1.08);
}

/* --- SHARE TOOLTIP ("Link Copied!") --- */
.share-tooltip {
    position: fixed;
    bottom: 108px;
    right: 90px;
    background: var(--text-dark);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.share-tooltip.visible {
    opacity: 1;
}

/* --- FLOATING BOB ANIMATION --- */
@keyframes floatBob {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-6px);
    }
}

/* ============================================
   TABLET LANDSCAPE - 2 cards (1024px)
   ============================================ */
@media (max-width: 1024px) and (min-width: 769px) {
    .destination-card {
        /* 2 cards visible — (100% - 1 gap) / 2 */
        min-width: calc((100% - 2rem) / 2);
        max-width: calc((100% - 2rem) / 2);
    }
}

/* ============================================
   MOBILE RESPONSIVE - TABLET (768px)
   ============================================ */
@media (max-width: 768px) {
    /* NAVBAR - Compact and safe area aware */
    .navbar {
        padding: 1rem 4%;
    }
    
    .navbar.scrolled {
        padding: 0.7rem 4%;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .navbar.scrolled .logo {
        font-size: 1.2rem;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 75%;
        max-width: 300px;
        background: rgba(10, 77, 60, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 2rem;
        padding-top: env(safe-area-inset-top, 2rem);
        padding-bottom: env(safe-area-inset-bottom, 2rem);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.3rem;
        color: var(--text-light) !important;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    /* HERO SECTION - Better mobile padding */
    .hero-content {
        padding: 0 1.2rem;
    }

    .hero-content h1 {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
        margin-bottom: 1.2rem;
    }

    .hero-content p {
        font-size: clamp(0.95rem, 3vw, 1.1rem);
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
        font-size: 0.85rem;
    }

    /* SOCIAL MEDIA BAR */
    .social-media-bar {
        padding: 2rem 4%;
    }

    .social-media-container {
        gap: 1.5rem;
        flex-direction: column;
    }

    .social-text {
        font-size: 1rem;
    }

    .social-icons-bar {
        gap: 1.2rem;
    }

    .social-icon-link {
        width: 48px;
        height: 48px;
    }

    /* ABOUT SECTION */
    .about {
        padding: 5rem 4%;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-text h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 1.5rem;
    }

    .about-text h3 {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 1.5rem;
    }

    .about-text p {
        font-size: 1rem;
        line-height: 1.7;
    }

    /* DESTINATIONS SECTION */
    .destinations {
        padding: 5rem 4%;
    }

    .section-title {
        margin-bottom: 3rem;
    }

    .section-title h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .section-title p {
        font-size: clamp(0.95rem, 3vw, 1.1rem);
    }

    .destinations-slider {
        padding: 1.5rem 0;
    }
    
    .destinations-track {
        gap: 1.5rem;
    }

    .destination-card {
        /* 1 card visible on mobile */
        min-width: calc(100% - 2rem);
        max-width: calc(100% - 2rem);
    }

    .destination-card img {
        height: 220px;
    }

    .destination-info {
        padding: 1.5rem;
    }

    .destination-info h3 {
        font-size: 1.5rem;
    }

    .destination-info p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .slider-controls {
        margin-top: 2rem;
    }

    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    /* GALLERY SECTION */
    .gallery {
        padding: 5rem 4%;
    }

    .gallery-filters {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 0.75rem;
        padding: 0 0.5rem 1rem;
        margin-bottom: 2.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .gallery-filters::-webkit-scrollbar {
        display: none;
    }
    
    .filter-btn {
        flex-shrink: 0;
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-item .overlay {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 100%);
        padding: 1.5rem 1rem 1rem;
    }
    
    .overlay h4 {
        font-size: 1.1rem;
    }

    .see-more-container {
        margin-top: 3rem;
    }

    .btn-see-more {
        padding: 1rem 2.5rem;
        font-size: 1rem;
        width: 90%;
        max-width: 300px;
    }

    /* AUTHOR SECTION */
    .author {
        padding: 5rem 4%;
    }

    .author-image {
        width: 150px;
        height: 150px;
        margin-bottom: 1.5rem;
    }

    .author-container h2 {
        font-size: clamp(1.6rem, 5vw, 2rem);
    }

    .author-container .subtitle {
        font-size: 1rem;
    }

    .author-container p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .social-links {
        gap: 1.2rem;
    }

    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    /* CONTACT SECTION */
    .contact {
        padding: 5rem 4%;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .contact-info p {
        font-size: 1rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 1rem;
        padding: 0.9rem;
    }

    .submit-btn {
        font-size: 1rem;
        padding: 1.1rem;
    }

    /* FOOTER */
    .footer {
        padding: 3rem 4% 2rem;
    }
    
    .footer-content {
        gap: 2.5rem;
        margin-bottom: 2rem;
        grid-template-columns: 1fr;
    }

    .footer-section h3 {
        font-size: 1.3rem;
    }

    .footer-bottom {
        font-size: 0.85rem;
    }

    /* FLOATING BUTTONS - Mobile adjustments */
    .back-to-top.visible {
        display: flex;
    }

    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 48px;
        height: 48px;
    }

    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }

    .floating-share {
        bottom: 85px;
        right: 20px;
        width: 48px;
        height: 48px;
    }

    .share-tooltip {
        bottom: 93px;
        right: 78px;
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

/* ============================================
   MOBILE RESPONSIVE - SMALL MOBILE (480px)
   ============================================ */
@media (max-width: 480px) {
    /* NAVBAR */
    .navbar {
        padding: 0.9rem 3%;
    }

    .logo {
        font-size: 1.3rem;
    }

    .navbar.scrolled .logo {
        font-size: 1.1rem;
    }

    .nav-links {
        width: 80%;
    }

    /* HERO */
    .hero-content {
        padding: 0 1rem;
    }

    .hero-content h1 {
        font-size: clamp(1.4rem, 7vw, 1.9rem);
        line-height: 1.25;
    }

    .hero-content p {
        font-size: clamp(0.9rem, 3.5vw, 1rem);
        line-height: 1.5;
    }

    .btn {
        max-width: 260px;
        padding: 0.9rem 1.8rem;
        font-size: 0.8rem;
    }

    /* SOCIAL MEDIA */
    .social-media-bar {
        padding: 1.8rem 3%;
    }

    .social-icon-link {
        width: 44px;
        height: 44px;
    }

    .social-icon-link svg {
        width: 20px;
        height: 20px;
    }

    /* SECTIONS - Reduced padding */
    .about,
    .destinations,
    .gallery,
    .author,
    .contact {
        padding: 4rem 3%;
    }

    .section-title {
        margin-bottom: 2.5rem;
    }

    /* DESTINATIONS */
    .destination-card {
        min-width: calc(100% - 1.5rem);
        max-width: calc(100% - 1.5rem);
    }

    .destination-card img {
        height: 200px;
    }

    .destination-info {
        padding: 1.3rem;
    }

    .destination-info h3 {
        font-size: 1.4rem;
    }

    .destination-info p {
        font-size: 0.88rem;
    }

    /* GALLERY */
    .filter-btn {
        padding: 0.65rem 1.3rem;
        font-size: 0.82rem;
    }

    .btn-see-more {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
        width: 95%;
    }

    /* CONTACT */
    .contact-form {
        padding: 1.8rem 1.2rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.85rem;
        font-size: 0.95rem;
    }

    /* FOOTER */
    .footer {
        padding: 2.5rem 3% 1.5rem;
    }

    .footer-section h3 {
        font-size: 1.2rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }

    /* FLOATING BUTTONS */
    .back-to-top {
        bottom: 15px;
        left: 15px;
        width: 45px;
        height: 45px;
    }

    .floating-whatsapp {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }

    .floating-share {
        bottom: 78px;
        right: 15px;
        width: 45px;
        height: 45px;
    }

    .share-tooltip {
        bottom: 86px;
        right: 70px;
        font-size: 0.75rem;
        padding: 5px 10px;
    }
}

/* ============================================
   EXTRA SMALL MOBILE (360px and below)
   ============================================ */
@media (max-width: 360px) {
    .logo {
        font-size: 1.2rem;
    }

    .hero-content h1 {
        font-size: 1.3rem;
    }

    .hero-content p {
        font-size: 0.88rem;
    }

    .destination-card {
        min-width: calc(100% - 1.5rem);
        max-width: calc(100% - 1.5rem);
    }

    .destination-info {
        padding: 1.2rem;
    }

    .destination-info h3 {
        font-size: 1.3rem;
    }

    .destination-info p {
        font-size: 0.85rem;
    }
}
