/* Gallery Home Section */
.gallery-home {
    padding: clamp(2.5rem, 8vw, 4rem) 0;
    background: white;
}

.gallery-home h2 {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 300;
    color: #8B7355;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: clamp(1rem, 3vw, 1.5rem);
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 0.75rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: clamp(1rem, 3vw, 1.5rem);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 500;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        aspect-ratio: 3/2;
    }
}

/* Import Hubballi Font */
@import url('https://fonts.googleapis.com/css2?family=Hubballi&display=swap');

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

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 1.25rem);
    width: 100%;
}

/* Custom Professional Icons */
.icon-email,
.icon-whatsapp,
.icon-phone,
.icon-location,
.icon-surf,
.icon-island,
.icon-spa,
.icon-snorkel,
.icon-sunset,
.icon-food,
.icon-beach,
.icon-wellness,
.icon-check,
.icon-star,
.icon-instagram {
    display: inline-block;
    width: 48px;
    height: 48px;
    position: relative;
    margin: 0 auto;
}

/* Email Icon */
.icon-email {
    background: linear-gradient(135deg, #DAC3A2, #C4A676);
    border-radius: 8px;
    position: relative;
}

.icon-email::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 20px;
    border: 2.5px solid white;
    border-radius: 3px;
}

.icon-email::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 10px solid white;
    margin-top: -3px;
}

/* WhatsApp/Chat Icon */
.icon-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    position: relative;
}

.icon-whatsapp::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 22px;
    border: 3px solid white;
    border-radius: 50%;
}

.icon-whatsapp::after {
    content: '';
    position: absolute;
    bottom: 12px;
    right: 10px;
    width: 0;
    height: 0;
    border-left: 6px solid white;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

/* Phone Icon */
.icon-phone {
    background: linear-gradient(135deg, #8B7355, #6d5a43);
    border-radius: 10px;
    position: relative;
}

.icon-phone::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(135deg);
    width: 20px;
    height: 20px;
    border-right: 3px solid white;
    border-bottom: 3px solid white;
    border-radius: 0 0 8px 0;
}

.icon-phone::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

/* Location Icon */
.icon-location {
    background: linear-gradient(135deg, #C4A676, #8B7355);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: relative;
}

.icon-location::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: white;
    border-radius: 50%;
}

/* Activity Icons */
.icon-surf {
    background: linear-gradient(135deg, #00CED1, #20B2AA);
    border-radius: 10px;
    position: relative;
}

.icon-surf::before {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 8px;
    width: 32px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transform: rotate(-15deg);
}

.icon-surf::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 16px solid rgba(255, 255, 255, 0.6);
}

/* Island Icon */
.icon-island {
    background: linear-gradient(135deg, #87CEEB, #4682B4);
    border-radius: 10px;
    position: relative;
}

.icon-island::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 10px;
    background: #F5DEB3;
    border-radius: 50% 50% 0 0;
}

.icon-island::after {
    content: '';
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 12px solid #228B22;
}

/* Spa/Wellness Icon */
.icon-spa {
    background: linear-gradient(135deg, #90EE90, #98FB98);
    border-radius: 10px;
    position: relative;
}

.icon-spa::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 3px solid white;
    border-radius: 50%;
}

.icon-spa::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

/* Beach Icon */
.icon-beach {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    position: relative;
}

.icon-beach::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border: 3px solid white;
    border-radius: 50%;
}

/* Check/Tick Icon */
.icon-check {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #DAC3A2, #C4A676);
    border-radius: 50%;
    position: relative;
    display: inline-block;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.icon-check::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 7px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Star Icon */
.icon-star {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #DAC3A2, #C4A676);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    margin: 0 2px;
}

/* Instagram Icon */
.icon-instagram {
    background: linear-gradient(135deg, #E1306C, #C13584, #833AB4);
    border-radius: 12px;
    position: relative;
}

.icon-instagram::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 22px;
    border: 3px solid white;
    border-radius: 50%;
}

.icon-instagram::after {
    content: '';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
}

/* Larger icons for contact cards */
.contact-icon-large .icon-email,
.contact-icon-large .icon-whatsapp,
.contact-icon-large .icon-phone,
.contact-icon-large .icon-location {
    width: 64px;
    height: 64px;
}

.contact-icon-large .icon-email::before {
    width: 36px;
    height: 26px;
}

.contact-icon-large .icon-email::after {
    border-left-width: 18px;
    border-right-width: 18px;
    border-top-width: 13px;
}

.contact-icon-large .icon-whatsapp::before {
    width: 30px;
    height: 30px;
}

.contact-icon-large .icon-phone::before {
    width: 28px;
    height: 28px;
}

/* Feature icon sizing */
.feature-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.activity-item h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(0.75rem, 2vw, 1rem) 0;
    min-height: clamp(3.5rem, 10vw, 4rem);
}

.logo {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 700;
    color: #8B7355;
    letter-spacing: clamp(1px, 0.3vw, 2px);
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: clamp(1rem, 3vw, 2rem);
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
}

.nav-links a {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #8B7355;
}

/* Mobile Dropdown Menu */
.mobile-menu {
    position: fixed;
    top: 4rem;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-top: -1px;
}

.mobile-menu.active {
    max-height: 20rem;
    padding: 1rem 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.2);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.mobile-nav-links li {
    transform: translateY(-1rem);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active .mobile-nav-links li {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu.active .mobile-nav-links li:nth-child(5) { transition-delay: 0.5s; }

.mobile-nav-links a {
    display: block;
    padding: 1rem 1.5rem;
    color: #8B7355;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(139, 115, 85, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-nav-links li:last-child a {
    border-bottom: none;
}

.mobile-nav-links a::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(218, 195, 162, 0.15), transparent);
    transition: left 0.5s ease;
}

.mobile-nav-links a:hover::before {
    left: 100%;
}

.mobile-nav-links a:hover {
    color: #6d5a43;
    background: rgba(218, 195, 162, 0.08);
    padding-left: 2rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.3125rem;
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

.hamburger span {
    width: 1.25rem;
    height: 0.125rem;
    background: #8B7355;
    margin: 0.125rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

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

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

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

/* Navigation Buttons */
.nav-buttons {
    display: flex;
    gap: clamp(0.375rem, 1vw, 0.625rem);
    align-items: center;
    flex-shrink: 0;
}

@media (max-width: 500px) {
    .nav-buttons {
        flex-direction: row;
        gap: 0.25rem;
    }
}

.book-now-btn,
.plan-trip-btn {
    padding: clamp(0.5rem, 1.5vw, 0.75rem) clamp(0.75rem, 2vw, 1.25rem);
    border: none;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: clamp(0.7rem, 1.8vw, 0.875rem);
    text-align: center;
    white-space: nowrap;
    min-width: clamp(4rem, 12vw, 5.5rem);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    height: auto;
    line-height: 1.2;
}

@media (max-width: 900px) {
    .book-now-btn,
    .plan-trip-btn {
        padding: 0.5625rem 1rem;
        font-size: 0.8125rem;
        min-width: 4.75rem;
        line-height: 1.1;
    }
}

.book-now-btn {
    background: #C4A676;
    color: white;
    border: 2px solid transparent;
}

.book-now-btn:hover {
    background: #8B7355;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(218, 195, 162, 0.4);
}

.plan-trip-btn {
    background: transparent;
    color: #8B7355;
    border: 2px solid #8B7355;
}

.plan-trip-btn:hover {
    background: #8B7355;
    color: white;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    height: auto;
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.6), rgba(218, 195, 162, 0.4)), 
                url('KALO%20VILLA%20PICTURES/aerial%202.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding: clamp(4rem, 10vw, 6rem) clamp(1rem, 3vw, 1.25rem);
}

.hero::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(218, 195, 162, 0.3);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    max-width: min(600px, 90%);
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    width: 100%;
    max-width: 500px;
    position: relative;
}

.hero-logo img {
    width: 100%;
    height: auto;
    opacity: 1;
    position: relative;
    z-index: 2;
}



/* Quick Overview */
.quick-overview {
    padding: clamp(2.5rem, 8vw, 4rem) 0;
    background: white;
    text-align: center;
}

.overview-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 300;
    color: #8B7355;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.overview-content p {
    font-size: clamp(0.95rem, 2.2vw, 1.1rem);
    color: #666;
    max-width: min(800px, 95%);
    margin: 0 auto clamp(1.5rem, 4vw, 2rem) auto;
    line-height: 1.8;
    padding: 0 1rem;
}

.overview-buttons {
    display: flex;
    gap: clamp(0.75rem, 2vw, 1rem);
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 1rem;
}

/* CTA Buttons */
.cta-btn {
    padding: clamp(0.75rem, 2vw, 0.875rem) clamp(1.25rem, 3vw, 1.75rem);
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    text-transform: uppercase;
    letter-spacing: clamp(0.3px, 0.1vw, 0.5px);
    display: inline-block;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #DAC3A2, #C4A676);
    color: white;
}

.cta-btn.primary:hover {
    background: linear-gradient(135deg, #C4A676, #8B7355);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(218, 195, 162, 0.4);
}

.cta-btn.secondary {
    background: transparent;
    color: #8B7355;
    border: 2px solid #8B7355;
}

.cta-btn.secondary:hover {
    background: #8B7355;
    color: white;
    transform: translateY(-2px);
}

.cta-btn.large {
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
}

.cta-center {
    text-align: center;
    padding: 3rem 0;
}

.cta-center h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #8B7355;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.cta-center p {
    color: #666;
    margin-bottom: 1.5rem;
}

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

/* Featured Package Home */
.feature-package-home {
    padding: clamp(2.5rem, 8vw, 4rem) 0;
    padding-bottom: clamp(4rem, 10vw, 5rem);
    background: #fafafa;
    overflow: visible;
}

.feature-package-home h2 {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 300;
    color: #8B7355;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.package-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
    gap: clamp(2rem, 5vw, 3rem);
    align-items: center;
    overflow: visible;
}

.package-info {
    padding: 0 clamp(1rem, 4vw, 1.5rem);
}

.package-info h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: #8B7355;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    font-weight: 300;
    letter-spacing: clamp(0.5px, 0.2vw, 1px);
}

.package-info ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.package-info li {
    padding: clamp(0.375rem, 1vw, 0.5rem) 0;
    color: #666;
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 300;
    position: relative;
    padding-left: clamp(1.5rem, 4vw, 2rem);
    display: flex;
    align-items: center;
}

.package-info li::before {
    content: '';
    position: absolute;
    left: 0;
}

.package-price {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    color: #8B7355;
    font-weight: 600;
    margin: clamp(1rem, 3vw, 1.5rem) 0;
}

.package-image {
    min-height: clamp(250px, 50vw, 350px);
    height: 100%;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
}

/* Image Carousel */
.image-carousel {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: visible;
    border-radius: 0.75rem;
    perspective: 1000px;
    cursor: grab;
    user-select: none;
    will-change: transform;
}

.image-carousel:active {
    cursor: grabbing;
}

.carousel-track {
    display: flex;
    height: 100%;
    position: relative;
    width: 100%;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 0.75rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    filter: brightness(0.95) contrast(1.05) saturate(1.1);
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    left: 0;
    top: 0;
}

/* Override for testimonial slides - no background styling */
.testimonial-carousel .carousel-slide {
    background: transparent !important;
    box-shadow: none !important;
    filter: none !important;
    border-radius: 0 !important;
}

/* Stack effect - each slide is positioned behind the active one */
.carousel-slide {
    transform: translate3d(0, 0, 0) scale(0.95);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

/* Active slide */
.carousel-slide.active {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
    z-index: 10;
}

/* Next slides (hidden on the right) */
.carousel-slide.next {
    transform: translate3d(100%, 0, 0) scale(0.95);
    opacity: 0;
    z-index: 5;
}

.carousel-slide.next-next {
    transform: translate3d(100%, 0, 0) scale(0.9);
    opacity: 0;
    z-index: 4;
}

/* Previous slides (hidden on the left) */
.carousel-slide.prev {
    transform: translate3d(-100%, 0, 0) scale(0.95);
    opacity: 0;
    z-index: 2;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.15), rgba(218, 195, 162, 0.1));
    border-radius: 0.75rem;
}

/* Remove overlay for testimonial carousel */
.testimonial-carousel .carousel-slide::before {
    display: none;
}

.carousel-dots {
    position: absolute;
    bottom: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(139, 115, 85, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #8B7355;
    width: 28px;
    border-radius: 5px;
}

.dot:hover {
    background: rgba(139, 115, 85, 0.6);
}

@media (max-width: 768px) {
    /* Reduce stacking effect on mobile for better performance */
    .carousel-slide.next {
        transform: translate3d(5%, 0, 0) scale(0.96);
    }
    
    .carousel-slide.next-next {
        transform: translate3d(8%, 0, 0) scale(0.92);
        display: none; /* Hide third slide on mobile to improve performance */
    }
    
    /* Simplify filters on mobile */
    .carousel-slide {
        filter: brightness(1) contrast(1) saturate(1);
    }
}

/* Testimonials Home */
.testimonials-home {
    padding: clamp(2rem, 6vw, 3rem) 0;
    background: white;
}

.testimonial-box {
    max-width: min(800px, 95%);
    margin: 0 auto;
    text-align: center;
    padding: clamp(1.5rem, 4vw, 2rem);
    background: #fafafa;
    border-radius: 0.75rem;
}

.stars {
    color: #DAC3A2;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.25rem;
}

.star-icon {
    width: 20px;
    height: 20px;
    stroke: #DAC3A2;
    fill: none;
    stroke-width: 2;
}

.testimonial-text {
    font-size: clamp(0.95rem, 2.2vw, 1.1rem);
    line-height: 1.8;
    color: #666;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #8B7355;
}

/* Quick Contact */
.quick-contact {
    padding: clamp(2.5rem, 8vw, 4rem) 0;
    background: #fafafa;
    text-align: center;
}

.quick-contact h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 300;
    color: #8B7355;
    margin-bottom: clamp(0.5rem, 2vw, 0.75rem);
}

.quick-contact > .container > p {
    color: #666;
    margin-bottom: clamp(2rem, 4vw, 2.5rem);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: clamp(1rem, 3vw, 1.5rem);
    max-width: min(800px, 95%);
    margin: 0 auto clamp(1.5rem, 4vw, 2rem) auto;
}

.contact-method {
    padding: clamp(1.5rem, 4vw, 2rem) clamp(0.75rem, 2vw, 1rem);
    background: white;
    border-radius: 0.75rem;
    text-decoration: none;
    color: #8B7355;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 140px;
    justify-content: center;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-method .icon-whatsapp,
.contact-method .icon-email,
.contact-method .icon-phone {
    margin-bottom: 1rem;
}

.contact-method div {
    font-weight: 600;
    font-size: 1rem;
    color: #8B7355;
}

/* Experience Cards */
.experiences-page {
    padding: clamp(2rem, 6vw, 3rem) 0;
    background: white;
}

.experience-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: clamp(1rem, 3vw, 1.5rem);
}

.experience-card {
    min-height: clamp(300px, 60vw, 400px);
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 0.75rem;
    background-size: cover;
    background-position: center;
}

.experience-card.beach {
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.3), rgba(218, 195, 162, 0.3)), 
                url('KALO%20VILLA%20PICTURES/5.%20Pool/5-pool.jpg');
    background-size: cover;
    background-position: center;
}

.experience-card.wellness {
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.3), rgba(218, 195, 162, 0.3)), 
                url('KALO%20VILLA%20PICTURES/1.%20Dining%20Area/E3E9CCFB-9327-4DD3-A816-E211C6B6DA02_4_5005_c.jpeg');
    background-size: cover;
    background-position: center;
}

.experience-card.adventure {
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.3), rgba(218, 195, 162, 0.3)), 
                url('KALO%20VILLA%20PICTURES/6.%20Outdoor/ocean%20view.jpg');
    background-size: cover;
    background-position: center;
}

.experience-card.island-hopping {
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.3), rgba(218, 195, 162, 0.3)), 
                url('KALO%20VILLA%20PICTURES/aerial%202.jpg');
    background-size: cover;
    background-position: center;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent 60%, rgba(0,0,0,0.8));
    transition: all 0.4s ease;
}

.experience-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    z-index: 10;
}

.experience-card:hover::before {
    background: linear-gradient(transparent 40%, rgba(0,0,0,0.9));
}

.experience-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: clamp(1.25rem, 4vw, 2rem);
    color: white;
    z-index: 2;
    transform: translateY(clamp(40px, 10vw, 60px));
    transition: all 0.4s ease;
}

.experience-card:hover .experience-content {
    transform: translateY(0);
}

.experience-content h3 {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 600;
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
    text-transform: uppercase;
    letter-spacing: clamp(1px, 0.3vw, 2px);
    transform: translateY(0);
    transition: all 0.4s ease;
}

.experience-content p {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.experience-card:hover .experience-content p {
    opacity: 0.9;
    transform: translateY(0);
}

/* Detailed Activities */
.detailed-activities {
    padding: clamp(2.5rem, 8vw, 4rem) 0;
    background: #fafafa;
}

.detailed-activities h2 {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 300;
    color: #8B7355;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: clamp(2rem, 6vw, 3rem);
}

.activity-item {
    background: white;
    padding: clamp(1.5rem, 4vw, 2rem);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.activity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.activity-item h3 {
    font-size: clamp(1.05rem, 2.5vw, 1.2rem);
    color: #8B7355;
    margin-bottom: clamp(0.625rem, 2vw, 0.75rem);
}

.activity-item p {
    color: #666;
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.6;
}

/* Packages Page */
.packages-section {
    padding: 3rem 0 4rem 0;
    background: white;
}

.package-detail {
    background: #fafafa;
    border-radius: 1rem;
    padding: clamp(2rem, 5vw, 3rem);
    margin-bottom: clamp(2rem, 6vw, 3rem);
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
    flex-wrap: wrap;
    gap: clamp(0.75rem, 2vw, 1rem);
}

.package-header h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #8B7355;
    font-weight: 300;
    letter-spacing: 1px;
}

.package-price-large {
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: #8B7355;
    font-weight: 600;
}

.package-price-large span {
    font-size: 1.2rem;
    font-weight: 300;
}

.package-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.package-details h3 {
    color: #8B7355;
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
    margin-top: clamp(1.25rem, 3vw, 1.5rem);
    font-size: clamp(1rem, 2.2vw, 1.1rem);
    text-transform: uppercase;
    letter-spacing: clamp(0.3px, 0.1vw, 0.5px);
}

.package-details h3:first-child {
    margin-top: 0;
}

.package-details ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.package-details li {
    padding: 0.4rem 0;
    color: #666;
    font-weight: 300;
    position: relative;
    padding-left: 2rem;
    display: flex;
    align-items: center;
}

.package-details li::before {
    content: '';
    position: absolute;
    left: 0;
}

.package-note {
    background: white;
    padding: clamp(1.25rem, 3vw, 1.5rem);
    border-radius: 0.5rem;
    margin: clamp(1.5rem, 4vw, 2rem) 0;
    border-left: clamp(3px, 0.5vw, 4px) solid #DAC3A2;
}

.package-note p {
    margin: 0.5rem 0;
    color: #666;
}

.package-image-large {
    height: 450px;
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.3), rgba(218, 195, 162, 0.2)), 
                url('KALO%20VILLA%20PICTURES/BR1%20exterior.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    font-weight: 300;
}

/* Booking Info */
.booking-info {
    padding: clamp(2rem, 5vw, 3rem);
    background: white;
    border-radius: 1rem;
    margin-bottom: clamp(2rem, 6vw, 3rem);
}

.booking-info h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #8B7355;
    margin-bottom: 2rem;
    font-weight: 300;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: clamp(1.5rem, 4vw, 2rem);
}

.info-item {
    padding: clamp(1.25rem, 3vw, 1.5rem);
    background: #fafafa;
    border-radius: 0.75rem;
}

.info-item h3 {
    color: #8B7355;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.info-item p {
    color: #666;
    line-height: 1.8;
}

/* Nearby Section */
.nearby-section {
    padding: clamp(2rem, 5vw, 3rem);
    background: #fafafa;
    border-radius: 1rem;
    margin-bottom: clamp(2rem, 6vw, 3rem);
}

.nearby-section h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #8B7355;
    margin-bottom: 2rem;
    font-weight: 300;
    text-align: center;
}

.nearby-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: clamp(1.25rem, 3vw, 1.5rem);
}

.nearby-item {
    background: white;
    padding: clamp(1.25rem, 3vw, 1.5rem);
    border-radius: 0.75rem;
    text-align: center;
    transition: all 0.3s ease;
}

.nearby-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.nearby-item h4 {
    color: #8B7355;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.nearby-item p {
    color: #666;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: clamp(2rem, 5vw, 3rem);
    background: white;
    border-radius: 1rem;
    margin-bottom: clamp(2rem, 6vw, 3rem);
}

.faq-section h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #8B7355;
    margin-bottom: 2rem;
    font-weight: 300;
    text-align: center;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.1);
}

.faq-question {
    background: #8B7355;
    color: white;
    padding: clamp(1rem, 2.5vw, 1.2rem) clamp(1.25rem, 3vw, 1.5rem);
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
    border: none;
    width: 100%;
    text-align: left;
    font-size: clamp(0.9rem, 2vw, 0.95rem);
}

.faq-question:hover {
    background: #6d5a43;
}

.faq-answer {
    background: #fafafa;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: clamp(1rem, 2.5vw, 1.2rem) clamp(1.25rem, 3vw, 1.5rem);
    max-height: 300px;
}

.faq-answer p {
    color: #666;
    font-weight: 300;
    line-height: 1.8;
}

/* About Page */
.about-content {
    padding: clamp(2rem, 6vw, 3rem) 0;
    background: white;
}

.about-featured-image {
    width: 100%;
    max-width: 100%;
    margin-bottom: clamp(2.5rem, 8vw, 4rem);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    min-height: clamp(180px, 35vw, 280px);
    height: clamp(180px, 35vw, 280px);
    position: relative;
}

.about-featured-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 183, 77, 0.2), rgba(255, 138, 101, 0.15), rgba(139, 115, 85, 0.1));
    z-index: 1;
    pointer-events: none;
}

.about-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.9) contrast(1.1) saturate(1.4) hue-rotate(15deg) sepia(0.3) warmth(1.2);
    transition: filter 0.3s ease;
}

@media (max-width: 768px) {
    .about-featured-image {
        min-height: clamp(150px, 35vw, 220px);
        height: clamp(150px, 35vw, 220px);
    }
}

@media (max-width: 480px) {
    .about-featured-image {
        min-height: clamp(120px, 35vw, 180px);
        height: clamp(120px, 35vw, 180px);
    }
}

.about-section {
    margin-bottom: clamp(2.5rem, 8vw, 4rem);
}

.about-section h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #8B7355;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.about-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: clamp(1.5rem, 4vw, 2rem);
    margin-top: clamp(1.5rem, 4vw, 2rem);
}

.feature-box {
    background: #fafafa;
    padding: clamp(1.5rem, 4vw, 2rem);
    border-radius: 0.75rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-box h3 {
    color: #8B7355;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.feature-box p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.testimonials-section {
    background: transparent;
    padding: clamp(3rem, 6vw, 4rem) 0;
    border-radius: 0;
    margin-bottom: clamp(2rem, 5vw, 3rem);
    min-height: auto;
}

.testimonials-section h2 {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #8B7355;
    margin-bottom: 3rem;
    font-weight: 300;
}

.testimonial-carousel-container {
    max-width: min(650px, 90%);
    margin: 0 auto;
    height: 350px;
    position: relative;
    overflow: visible;
    padding: 0;
    background: transparent;
}

.testimonial-carousel {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: visible;
    cursor: grab;
    user-select: none;
    will-change: transform;
    padding: 0;
    background: transparent;
}

.testimonial-carousel:active {
    cursor: grabbing;
}

.testimonial-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    box-shadow: none !important;
    filter: none !important;
    padding: 1rem;
    height: 100%;
}

.testimonial-slide .testimonial-card {
    background: white;
    padding: clamp(2.5rem, 5vw, 3rem);
    border-radius: 1rem;
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    margin: 0 auto;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-slide .stars {
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.25rem;
}

.testimonial-slide .star-icon {
    width: 20px;
    height: 20px;
    stroke: #DAC3A2;
    fill: #DAC3A2;
    stroke-width: 2;
}

.testimonial-slide p {
    color: #666;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
}

.testimonial-slide .author {
    color: #8B7355;
    font-weight: 600;
    font-size: 1rem;
}

/* Contact Page */
.contact-page {
    padding: clamp(2rem, 6vw, 3rem) 0;
    background: white;
}

.contact-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: clamp(2.5rem, 8vw, 4rem);
}

.contact-card {
    background: #fafafa;
    padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2rem);
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 200px;
    justify-content: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.contact-icon-large {
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: #8B7355;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.contact-card p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Location Section */
.location-section {
    background: #fafafa;
    padding: clamp(2rem, 5vw, 3rem);
    border-radius: 1rem;
    margin-bottom: clamp(2.5rem, 8vw, 4rem);
}

.location-section h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #8B7355;
    margin-bottom: 2rem;
    font-weight: 300;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: clamp(2rem, 5vw, 3rem);
}

.location-info h3 {
    color: #8B7355;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.location-info p {
    color: #666;
    line-height: 1.8;
}

.map-placeholder {
    background: white;
    border-radius: 0.75rem;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Instagram Section */
.instagram-section-full {
    text-align: center;
    margin-bottom: clamp(2.5rem, 8vw, 4rem);
}

.instagram-section-full h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #8B7355;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.instagram-section-full p {
    color: #666;
    margin-bottom: 2rem;
}

.instagram-section-full .cta-btn {
    margin-top: 4rem;
}

.instagram-carousel-container {
    max-width: min(600px, 90%);
    margin: 0 auto 2rem;
    min-height: 400px;
    position: relative;
}

.instagram-carousel {
    width: 100%;
    height: 400px;
}

@media (max-width: 768px) {
    .instagram-carousel {
        height: 350px;
    }
    
    .instagram-carousel-container {
        min-height: 350px;
    }
}

@media (max-width: 480px) {
    .instagram-carousel {
        height: 300px;
    }
    
    .instagram-carousel-container {
        min-height: 300px;
    }
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #8B7355, #DAC3A2);
    padding: clamp(2rem, 5vw, 3rem);
    border-radius: 1rem;
    text-align: center;
    color: white;
    margin-bottom: clamp(2.5rem, 8vw, 4rem);
}

.newsletter-section h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.newsletter-section p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form-large {
    display: flex;
    max-width: min(500px, 95%);
    margin: 0 auto;
    gap: clamp(0.75rem, 2vw, 1rem);
    flex-wrap: wrap;
}

.newsletter-form-large input {
    flex: 1;
    min-width: min(250px, 100%);
    padding: clamp(0.875rem, 2vw, 1rem) clamp(1.25rem, 3vw, 1.5rem);
    border: none;
    border-radius: 0.5rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
    outline: none;
}

.newsletter-form-large button {
    border: 2px solid #8B7355;
    background: white;
    color: #8B7355;
    font-weight: 600;
    border-radius: 0.5rem;
    padding: clamp(0.875rem, 2vw, 1rem) clamp(1.25rem, 3vw, 1.5rem);
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form-large button:hover {
    background: #8B7355;
    color: white;
    transform: translateY(-1px);
}

/* Quick Booking */
.quick-booking {
    text-align: center;
    padding: clamp(2rem, 5vw, 3rem);
    background: #fafafa;
    border-radius: 1rem;
}

.quick-booking h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #8B7355;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.quick-booking p {
    color: #666;
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background: #2c2c2c;
    color: white;
    padding: clamp(2rem, 5vw, 2.5rem) 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: clamp(1.5rem, 4vw, 2rem);
    align-items: center;
}

.footer-logo {
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    font-weight: 700;
    color: #DAC3A2;
    letter-spacing: clamp(1px, 0.3vw, 2px);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 3vw, 1.5rem);
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 300;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #DAC3A2;
}

.social-links {
    display: flex;
    justify-content: flex-end;
    gap: 0.8rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: #DAC3A2;
    color: #2c2c2c;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.social-links a:hover {
    background: white;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    margin-top: clamp(1.25rem, 3vw, 1.5rem);
    padding-top: clamp(1.25rem, 3vw, 1.5rem);
    border-top: 1px solid #444;
    color: #999;
    font-weight: 300;
    font-size: clamp(0.8rem, 2vw, 0.85rem);
}

/* Floating Contact */
.floating-contact {
    position: fixed;
    bottom: clamp(1rem, 3vw, 2rem);
    right: clamp(1rem, 3vw, 2rem);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: clamp(0.5rem, 1.5vw, 0.8rem);
}

@media (max-width: 500px) {
    .floating-contact {
        bottom: 1rem;
        right: 1rem;
        gap: 0.5rem;
    }
}

.float-btn {
    width: clamp(2.75rem, 8vw, 3.125rem);
    height: clamp(2.75rem, 8vw, 3.125rem);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    flex-shrink: 0;
}

@media (max-width: 500px) {
    .float-btn {
        width: 2.5rem;
        height: 2.5rem;
    }
}

.float-btn:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.float-btn.whatsapp {
    background: #25D366;
}

.float-btn.email {
    background: #8B7355;
}

.float-btn.phone {
    background: #DAC3A2;
}

.float-btn i {
    width: 20px;
    height: 20px;
    stroke: white;
    stroke-width: 2;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

/* Ensure smooth transitions */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Page Header */
.page-header {
    padding: clamp(6rem, 15vw, 8rem) clamp(1rem, 3vw, 2rem) clamp(2rem, 5vw, 3rem);
    background: linear-gradient(135deg, #8B7355, #DAC3A2);
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 300;
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
    letter-spacing: clamp(1px, 0.3vw, 2px);
}

.page-header p {
    font-size: clamp(0.95rem, 2.2vw, 1.2rem);
    opacity: 0.9;
}

/* UNIFIED MOBILE LAYOUT - CONSISTENT ACROSS ALL PHONE SIZES */
@media (max-width: 900px) {
    /* Universal Mobile Settings - Same for ALL phones */
    .container {
        padding: 0 1rem;
    }
    
    /* Navigation - Consistent mobile layout */
    .hamburger {
        display: flex;
    }
    
    .logo {
        padding-left: 2.5rem;
        font-size: 1rem;
    }
    
    .nav-buttons {
        gap: 0.5rem;
        flex-direction: row;
    }
    
    .book-now-btn,
    .plan-trip-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
        min-width: 4rem;
        line-height: 1.2;
    }
    
    /* Hero Section - Mobile optimized */
    .hero {
        padding-top: 5rem;
        min-height: 100vh;
    }
    
    .hero-content {
        max-width: 95%;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }
    
    .hero-logo {
        max-width: 300px;
    }
    
    /* All Grids - Single column layout EXCEPT tour categories */
    .activity-grid,
    .features-grid,
    .testimonial-grid,
    .contact-grid-large,
    .contact-methods,
    .nearby-grid,
    .info-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Experience cards - Show all 4 cards stacked vertically */
    .experiences-page .experience-cards {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .experiences-page .experience-card {
        min-height: 200px;
        height: 200px;
        width: 100%;
    }
    
    .experiences-page .experience-content {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: auto;
        padding: 1.5rem;
        transform: translateY(0);
    }
    
    .package-container,
    .package-grid,
    .location-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Experience Cards - Consistent sizing */
    .experience-card {
        min-height: 200px;
        height: 200px;
    }
    
    .experience-content {
        padding: 1.5rem;
        transform: translateY(0);
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: auto;
    }
    
    .experience-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
        letter-spacing: 1px;
    }
    
    .experience-content p {
        font-size: 0.9rem;
        line-height: 1.5;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease 0.1s;
    }
    
    /* Typography - Consistent across all phones */
    h1 {
        font-size: 2rem !important;
    }
    
    h2 {
        font-size: 1.5rem !important;
    }
    
    h3 {
        font-size: 1.2rem !important;
    }
    
    p, li {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
    
    /* Buttons - Consistent sizing */
    .cta-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
        min-height: 44px;
    }
    
    /* Cards and sections - Consistent padding */
    .package-detail,
    .booking-info,
    .nearby-section,
    .faq-section,
    .location-section,
    .quick-booking,
    .newsletter-section {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .activity-item,
    .feature-box,
    .testimonial-card,
    .contact-card {
        padding: 1.5rem;
        min-height: 120px;
    }
    
    /* Footer - Mobile layout */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-logo {
        font-size: 1.2rem;
    }
    
    .footer-bottom {
        font-size: 0.8rem;
    }
    
    /* Forms */
    .newsletter-form-large {
        flex-direction: column;
        gap: 1rem;
        max-width: 100%;
    }
    
    .newsletter-form-large input,
    .newsletter-form-large button {
        width: 100%;
        padding: 1rem 1.25rem;
        font-size: 0.9rem;
    }
    
    /* FAQ */
    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.9rem;
        min-height: 44px;
    }
    
    .faq-answer.active {
        padding: 1rem 1.25rem;
    }
    
    /* Package pricing */
    .package-price-large {
        font-size: 1.8rem;
    }
    
    .package-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    /* Images */
    .about-featured-image {
        height: 200px;
        min-height: 200px;
    }
    
    .instagram-carousel {
        height: 300px;
    }
    
    .instagram-carousel-container {
        min-height: 300px;
    }
    
    /* Floating contact - Consistent positioning */
    .floating-contact {
        bottom: 1rem;
        right: 1rem;
        gap: 0.5rem;
    }
    
    .float-btn {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    /* Page spacing */
    section {
        scroll-margin-top: 5rem;
    }
    
    .page-header {
        padding: 6rem 1rem 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    /* Touch targets */
    .experience-card,
    .activity-item,
    .contact-method,
    .contact-card,
    .cta-btn,
    .faq-question {
        min-height: 44px;
    }
    
    /* Ensure no horizontal overflow */
    .carousel-slide.next {
        transform: translateX(4%) scale(0.98);
    }
    
    .carousel-slide.next-next {
        transform: translateX(6%) scale(0.96);
    }
}