/* ===== VARIABLES ===== */
:root {
    /* Colors */
    --primary-color: #E67E22; /* Warna oranye kecoklatan yang mencerminkan tanah Papua */
    --secondary-color: #2C3E50; /* Warna gelap untuk kontras */
    --accent-color: #16A085; /* Warna hijau yang mencerminkan alam Papua */
    --text-color: #333333;
    --text-light: #777777;
    --text-white: #FFFFFF;
    --bg-light: #F9F9F9;
    --bg-dark: #1A1A1A;
    --border-color: #EEEEEE;
    
    /* Typography */
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Poppins', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 15px;
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    
    /* Box Shadow */
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #FFFFFF;
}

ul {
    list-style: none;
}

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

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

button, input, textarea {
    font-family: var(--body-font);
    font-size: 16px;
    outline: none;
    border: none;
}

button {
    cursor: pointer;
    background: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 15px;
}

/* ===== LAYOUT ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

section {
    padding: var(--section-padding);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: #D35400;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

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

.btn-secondary:hover {
    background-color: #1A252F;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    min-width: 140px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #0a6b5d);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover::before {
    left: 100%;
}

.btn-whatsapp:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp i {
    font-size: 1.1rem;
    animation: whatsappPulse 2s infinite;
}

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

.btn-whatsapp-sm {
    background-color: #25D366;
    color: var(--text-white);
    padding: 8px 16px;
    font-size: 0.9rem;
    border-radius: var(--border-radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-whatsapp-sm:hover {
    background-color: #128C7E;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #FFFFFF;
    transition: all 0.4s ease;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 50px;
    transition: all 0.3s ease;
}

.logo-text {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.header.scrolled .logo img {
    height: 40px;
}

.header.scrolled .logo-text {
    font-size: 1.2rem;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    align-items: center;
}

.nav-item {
    margin: 0 15px;
}

.nav-link {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.language-switch button {
    background: none;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: color 0.3s ease;
}

.language-switch button.active {
    color: var(--primary-color);
}

.language-switch button:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease;
    background-color: var(--secondary-color);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--text-white);
    max-width: 900px;
    width: 100%;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--text-white);
    line-height: 1.2;
    word-wrap: break-word;
    text-rendering: optimizeLegibility;
    font-display: swap;
    opacity: 0;
    animation: fadeInUp 1.2s ease 0.3s;
    animation-fill-mode: both;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    word-wrap: break-word;
    text-rendering: optimizeLegibility;
    font-display: swap;
    opacity: 0;
    animation: fadeInUp 1.2s ease 0.6s;
    animation-fill-mode: both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    opacity: 0;
    animation: fadeInUp 1.2s ease 0.9s;
    animation-fill-mode: both;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.feature-card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(230, 126, 34, 0.1);
    border-radius: 50%;
}

.feature-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

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

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-divider {
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto 20px;
}

.section-subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-light);
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: var(--section-padding);
    background-color: #FFFFFF;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

/* Fix for mobile overflow - removed negative positioning that causes horizontal scroll */
.about-image::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 60px;
    height: 60px;
    border-top: 5px solid var(--primary-color);
    border-left: 5px solid var(--primary-color);
    z-index: 1;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    border-bottom: 5px solid var(--primary-color);
    border-right: 5px solid var(--primary-color);
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
}

.about-text h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}

.stat-text {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== PACKAGES SECTION ===== */
.packages {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.package-card {
    background-color: #FFFFFF;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.package-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.package-badge {
    position: absolute;
    top: 20px;
    right: 0;
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 8px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border-top-left-radius: var(--border-radius-sm);
    border-bottom-left-radius: var(--border-radius-sm);
}

.package-content {
    padding: 30px 25px 25px;
}

.package-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.3;
    color: var(--secondary-color);
}

.package-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.package-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.package-description {
    margin-bottom: 25px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.package-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.package-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.package-features i {
    color: var(--accent-color);
    font-size: 0.9rem;
    width: 16px;
    flex-shrink: 0;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    gap: 20px;
    flex-wrap: wrap;
}

.package-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.package-buttons .btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
    font-size: 0.9rem;
    padding: 10px 16px;
}

.package-buttons .btn-outline {
    border-width: 1px;
    font-weight: 500;
}

.package-buttons .btn-whatsapp {
    min-width: 140px;
}

.package-price {
    display: flex;
    flex-direction: column;
    min-width: 140px;
    flex-shrink: 0;
}

.price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 2px;
}

.per-person {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    opacity: 0.8;
}

/* Group Pricing Styles */
.package-pricing-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 180px;
    flex-shrink: 0;
}

.price-option {
    display: flex;
    flex-direction: column;
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: #fff;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.85rem;
}

.price-option:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(230, 126, 34, 0.1);
}

.price-option.discount {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(22, 160, 133, 0.03), rgba(22, 160, 133, 0.01));
}

.price-option.discount:hover {
    border-color: var(--accent-color);
    box-shadow: 0 2px 8px rgba(22, 160, 133, 0.15);
}

.price-label {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.price-option .price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 2px;
}

.price-option.discount .price {
    color: var(--accent-color);
}

.price-option .per-person {
    font-size: 0.65rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.discount-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: linear-gradient(135deg, var(--accent-color), #128C7E);
    color: white;
    font-size: 0.6rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(22, 160, 133, 0.3);
    z-index: 1;
}

/* CTA Pricing Styles */
.cta-pricing {
    margin: 20px 0;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

.cta-pricing .price-option {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
}

.cta-pricing .price-option .price {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.cta-pricing .price-option .per-person {
    font-size: 0.7rem;
    margin-left: 3px;
}

.cta-pricing .discount-badge {
    position: static;
    margin-left: 8px;
    font-size: 0.6rem;
    padding: 2px 5px;
}

.packages-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(46, 204, 113, 0.1));
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

.packages-cta p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Custom Packages Styling */
.custom-packages-intro {
    margin-bottom: 3rem;
}

.custom-packages-intro h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.custom-packages-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.custom-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.custom-package-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
}

.custom-package-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.custom-package-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.custom-package-icon i {
    font-size: 1.5rem;
    color: white;
}

.custom-package-item:hover .custom-package-icon {
    transform: scale(1.1) rotate(5deg);
}

.custom-package-item h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.custom-package-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.custom-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.custom-features li:before {
    content: '\2713';
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.custom-features li:last-child {
    border-bottom: none;
}

.custom-packages-footer {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.custom-packages-footer p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
}

/* ===== GALLERY SECTION ===== */
.gallery {
    padding: var(--section-padding);
    background-color: #FFFFFF;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: var(--border-radius-sm);
    background-color: transparent;
    border: 1px solid var(--border-color);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 10px 25px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: imageLoad 0.8s ease-out forwards;
}

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

/* Staggered animation delays for gallery items */
.gallery-item:nth-child(1) img { animation-delay: 0.1s; }
.gallery-item:nth-child(2) img { animation-delay: 0.2s; }
.gallery-item:nth-child(3) img { animation-delay: 0.3s; }
.gallery-item:nth-child(4) img { animation-delay: 0.4s; }
.gallery-item:nth-child(5) img { animation-delay: 0.5s; }
.gallery-item:nth-child(6) img { animation-delay: 0.6s; }

@keyframes imageLoad {
    from {
        opacity: 0;
        transform: scale(1.1);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3));
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: flex-end;
    backdrop-filter: blur(2px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    backdrop-filter: blur(4px);
}

.gallery-info {
    padding: 25px;
    color: var(--text-white);
    width: 100%;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-info h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-white);
    font-weight: 600;
    letter-spacing: -0.5px;
}

.gallery-info p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    opacity: 0.9;
    line-height: 1.5;
}

.gallery-expand {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), #D35400);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.gallery-expand::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    border-radius: 50%;
}

.gallery-expand:hover {
    background: linear-gradient(135deg, var(--text-white), #f8f9fa);
    color: var(--primary-color);
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
}

.gallery-expand:hover::before {
    width: 60px;
    height: 60px;
}

.gallery-expand:active {
    transform: scale(1.05) rotate(90deg);
}

/* Professional focus states for accessibility */
.gallery-expand:focus {
    outline: 3px solid rgba(255, 255, 255, 0.6);
    outline-offset: 2px;
}

.gallery-cta {
    text-align: center;
    margin-top: 40px;
}

.gallery-cta .btn {
    transition: all 0.3s ease, transform 0.15s ease;
    position: relative;
    overflow: hidden;
}

.gallery-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
}

.gallery-cta .btn:active {
    transform: translateY(0) scale(0.98);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.testimonial-card:hover .testimonial-content {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-text {
    margin-bottom: 25px;
    font-style: italic;
    color: var(--text-light);
    flex-grow: 1;
    line-height: 1.6;
}

.testimonial-text p {
    position: relative;
    padding: 0 20px;
    font-size: 1rem;
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin-bottom: 0;
}

.testimonial-text p::before {
    content: '\201C';
    font-size: 3rem;
    position: absolute;
    left: -10px;
    top: -20px;
    color: var(--primary-color);
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.rating i {
    color: #FFD700;
    font-size: 0.9rem;
}

/* ===== DEDICATED GALLERY PAGE ===== */
.gallery-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-placeholder.svg');
    background-size: cover;
    background-position: center;
}

.gallery-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.gallery-hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-white);
    text-align: center;
}

.back-button-container {
    margin-bottom: 20px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    border-radius: var(--border-radius-md);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.back-button:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
}

.gallery-hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-white);
    line-height: 1.2;
}

.gallery-hero-subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.main-gallery {
    padding: var(--section-padding);
    background-color: #FFFFFF;
}

.gallery-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    text-align: center;
}

.stat-item {
    padding: 30px 20px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.gallery-filter-extended {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-filter-extended .filter-btn {
    padding: 12px 24px;
    border-radius: var(--border-radius-md);
    background-color: transparent;
    border: 2px solid var(--border-color);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    color: var(--text-color);
}

.gallery-filter-extended .filter-btn:hover,
.gallery-filter-extended .filter-btn.active {
    background-color: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

.extended-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.extended-gallery-grid .gallery-item {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.extended-gallery-grid .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

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

.extended-gallery-grid .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

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

.extended-gallery-grid .gallery-info {
    color: var(--text-white);
}

.extended-gallery-grid .gallery-info h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-white);
}

.extended-gallery-grid .gallery-info p {
    font-size: 0.85rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.photo-category {
    display: inline-block;
    padding: 4px 8px;
    background-color: var(--primary-color);
    color: var(--text-white);
    font-size: 0.75rem;
    border-radius: var(--border-radius-sm);
    margin-bottom: 10px;
}

.extended-gallery-grid .gallery-expand {
    align-self: flex-end;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.extended-gallery-grid .gallery-expand:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

/* Gallery hidden class for load more functionality */
.gallery-hidden {
    display: none;
    opacity: 0;
    transform: scale(0.8) translateY(20px);
}

.gallery-hidden.show {
    display: block;
    animation: galleryItemShow 0.5s ease forwards;
}

@keyframes galleryItemShow {
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Gallery Completion Message */
.gallery-completion-message {
    text-align: center;
    margin: 3rem 0 2rem;
    padding: 1.5rem;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.photo-count-text {
    font-size: 1.1rem;
    color: #2e7d32;
    font-weight: 500;
    margin: 0;
}

.load-more-section {
    text-align: center;
    padding: 40px 0;
}

.load-more-text {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1rem;
}

.load-more-btn {
    padding: 12px 30px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Gallery page responsive adjustments */
@media (max-width: 1199.98px) {
    .extended-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991.98px) {
    .gallery-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .extended-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .gallery-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .gallery-hero {
        height: 40vh;
        min-height: 350px;
    }
    
    .gallery-hero-title {
        font-size: 2rem;
    }
    
    .gallery-hero-subtitle {
        font-size: 1rem;
    }
    
    .gallery-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .extended-gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .extended-gallery-grid .gallery-item {
        height: 250px;
    }
    
    .gallery-filter-extended {
        gap: 10px;
    }
    
    .gallery-filter-extended .filter-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/cta-bg-placeholder.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: var(--text-white);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-white);
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== INFORMATION SECTIONS ===== */

/* Terms & Conditions Section */
.terms {
    padding: var(--section-padding);
    background-color: #FFFFFF;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
}

.terms-section {
    margin-bottom: 40px;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--primary-color);
}

.terms-section h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.terms-section p {
    line-height: 1.8;
    color: var(--text-dark);
}

/* Privacy Policy Section */
.privacy {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 40px;
    padding: 30px;
    background-color: #FFFFFF;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-light);
}

.privacy-section h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.privacy-section p {
    line-height: 1.8;
    color: var(--text-dark);
}

/* FAQ Section */
.faq {
    padding: var(--section-padding);
    background-color: #FFFFFF;
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow-light);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.faq-question {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 20px 25px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    user-select: none;
    border: none;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background-color: #D35400;
    transform: translateX(3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.faq-question:active {
    transform: translateX(1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    font-weight: 300;
    transition: transform 0.4s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    line-height: 1;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
    content: '+';
    background-color: rgba(255,255,255,0.2);
}

.faq-answer {
    background-color: #FFFFFF;
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out, opacity 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.faq-item.active .faq-answer {
    padding: 25px;
    max-height: 600px;
    opacity: 1;
    visibility: visible;
}

.faq-answer p {
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
    font-size: 1rem;
    text-align: justify;
}

/* Blog Section */
.blog {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    background-color: #FFFFFF;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow-light);
    transition: all 0.3s ease;
}

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

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-info {
    padding: 25px;
}

.blog-date {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

.blog-info h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.blog-info p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Blog Tags */
.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.blog-tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: rgba(230, 126, 34, 0.1);
    color: var(--primary-color);
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(230, 126, 34, 0.2);
    transition: all 0.3s ease;
}

.blog-tag:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-1px);
}

/* Blog Meta */
.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
}

.blog-author i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.blog-date {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
}

.blog-read-time {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Blog Content Text */
.blog-content-text {
    padding: 25px;
}

.blog-content-text h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.blog-content-text p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* Blog Category */
.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 6px 12px;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Information Sections */
@media (max-width: 768px) {
    .terms-section,
    .privacy-section {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .faq-question::after {
        right: 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-info {
        padding: 20px;
    }
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: var(--section-padding);
    background-color: #FFFFFF;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
}

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

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

.contact-details h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.contact-details p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.social-media {
    margin-top: 20px;
}

.social-media h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

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

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

.contact-form-container {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius-md);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 0;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    background-color: #FFFFFF;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(230, 126, 34, 0.2);
}

/* Enhanced error states for contact form */
.form-group input.error,
.form-group textarea.error {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.2) !important;
    animation: shakeError 0.5s ease-in-out;
}

@keyframes shakeError {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.error-message {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    animation: fadeInDown 0.3s ease;
}

.error-message::before {
    content: "⚠";
    font-size: 0.9rem;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.full-width {
    width: 100%;
}

.map-container {
    margin-top: 50px;
}

.map-container h3 {
    margin-bottom: 20px;
    text-align: center;
}

.map {
    height: 400px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

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

/* ===== FOOTER ===== */
.footer {
    background-color: var(--secondary-color);
    color: var(--text-white);
    padding: 60px 0 30px;
}

/* Main Footer Content */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 2fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
}

/* Footer Sections */
.footer-section {
    display: flex;
    flex-direction: column;
}

/* Company Section */
.footer-company .footer-logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-company .footer-logo-container img {
    height: 60px;
    width: auto;
}

.footer-logo-text {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.footer-description {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 300px;
}

/* Social Media Section */
.footer-social-media {
    margin-top: 20px;
}

.footer-social-media h4 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.footer-social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-white);
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

/* Platform-specific social media colors */
.footer-social-icons a[title="Instagram"]:hover {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.4);
}

.footer-social-icons a[title="Facebook"]:hover {
    background-color: #1877F2;
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

.footer-social-icons a[title="YouTube"]:hover {
    background-color: #FF0000;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

.footer-social-icons a[title="TikTok"]:hover {
    background-color: #000000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* Links Section */
.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-links-column h3 {
    color: var(--text-white);
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-links-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-column ul li {
    margin-bottom: 10px;
}

.footer-links-column ul li a {
    color: var(--text-white);
    opacity: 0.8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links-column ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 5px;
}

/* Contact Section */
.footer-contact h3 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 3px;
    width: 20px;
    flex-shrink: 0;
}

.footer-contact-item p {
    margin: 0;
    opacity: 0.8;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-left p {
    margin: 0;
    opacity: 0.8;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 5px;
}

.language-selector button {
    background: none;
    border: none;
    color: var(--text-white);
    opacity: 0.8;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: var(--body-font);
    font-size: inherit;
    padding: 5px 8px;
    border-radius: 4px;
}

.language-selector button:hover,
.language-selector button.active {
    opacity: 1;
    color: var(--primary-color);
    background-color: rgba(230, 126, 34, 0.1);
}





/* ===== FLOATING BUTTONS ===== */
/* Sticky Back Button */
.sticky-back-button {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.sticky-back-button.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: all;
}

.sticky-back-button .back-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--secondary-color);
    border-radius: var(--border-radius-lg);
    border: 2px solid rgba(230, 126, 34, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-color);
}

.sticky-back-button .back-button:hover {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
    transform: translateY(-2px) translateX(-3px);
    box-shadow: 0 12px 40px rgba(230, 126, 34, 0.3);
}

.sticky-back-button .back-button:active {
    transform: translateY(0) translateX(0);
    box-shadow: 0 4px 16px rgba(230, 126, 34, 0.2);
}

.sticky-back-button .back-button i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.sticky-back-button .back-button:hover i {
    transform: translateX(-3px);
}

/* Original floating buttons */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 99;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #D35400;
    transform: translateY(-5px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reduce animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hero-title,
    .hero-subtitle,
    .hero-buttons {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===== PROFESSIONAL LIGHTBOX ===== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(20, 20, 30, 0.98));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 95%;
    max-height: 95%;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: lightboxSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes lightboxSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 12px 24px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    object-fit: contain;
}

.lightbox-content img:hover {
    transform: scale(1.02);
}

.lightbox-close {
    position: absolute;
    top: -60px;
    right: 0;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-color), #D35400);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.3rem;
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.lightbox-close:hover {
    background: linear-gradient(135deg, #D35400, #B7472A);
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.lightbox-close:active {
    transform: translateY(0) scale(0.98);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: calc(100% + 120px);
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0;
    pointer-events: none;
}

.lightbox-nav button {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.3rem;
    pointer-events: auto;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.lightbox-nav button:hover {
    background: linear-gradient(135deg, var(--primary-color), #D35400);
    border-color: var(--primary-color);
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
}

.lightbox-nav button:active {
    transform: translateY(0) scale(0.98);
}

.lightbox-caption {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(20, 20, 30, 0.95));
    color: var(--text-white);
    padding: 25px 30px;
    margin-top: 25px;
    border-radius: 12px;
    text-align: center;
    max-width: 600px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: captionFadeIn 0.5s ease 0.2s both;
}

@keyframes captionFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lightbox-caption h4 {
    color: var(--text-white);
    margin-bottom: 12px;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.lightbox-caption p {
    margin-bottom: 0;
    opacity: 0.9;
    line-height: 1.6;
    font-size: 1rem;
}

/* Loading animation */
.lightbox-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ===== ENHANCED LIGHTBOX FOR GALLERY PAGE ===== */
.enhanced-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1200;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.enhanced-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.enhanced-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.enhanced-lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    border: 3px solid #FFFFFF;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border-radius: var(--border-radius-md);
}

.enhanced-lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.enhanced-lightbox-close:hover {
    background-color: #D35400;
    transform: scale(1.1);
}

.enhanced-lightbox-caption {
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--text-white);
    padding: 20px;
    margin-top: 20px;
    border-radius: var(--border-radius-md);
    text-align: center;
    max-width: 600px;
    backdrop-filter: blur(10px);
}

.enhanced-lightbox-caption h4 {
    color: var(--text-white);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.enhanced-lightbox-caption p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.lightbox-category {
    display: inline-block;
    padding: 5px 12px;
    background-color: var(--primary-color);
    color: var(--text-white);
    font-size: 0.8rem;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
}

.enhanced-lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 -60px;
    pointer-events: none;
}

.enhanced-lightbox-prev,
.enhanced-lightbox-next {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    pointer-events: auto;
    backdrop-filter: blur(10px);
}

.enhanced-lightbox-prev:hover,
.enhanced-lightbox-next:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.enhanced-lightbox-prev {
    margin-left: 0;
}

.enhanced-lightbox-next {
    margin-right: 0;
}

/* Responsive adjustments for professional lightbox */
@media (max-width: 1024px) {
    .enhanced-lightbox-nav {
        padding: 0 20px; /* Fixed negative padding that causes overflow */
    }
    
    .enhanced-lightbox-prev {
        margin-left: 0; /* Removed negative margin that causes overflow */
    }
    
    .enhanced-lightbox-next {
        margin-right: 0; /* Removed negative margin that causes overflow */
    }
}

@media (max-width: 768px) {
    .enhanced-lightbox-nav {
        padding: 0 10px; /* Further adjusted for smaller screens */
    }
    
    .enhanced-lightbox-prev,
    .enhanced-lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

    
    .lightbox-caption p {
        font-size: 0.95rem;
    }
    
    .lightbox-nav {
        width: calc(100% + 60px);
    }
    
    .lightbox-nav button {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

@media (max-width: 576px) {
    .lightbox-content {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .lightbox-content img {
        max-height: 70vh;
        border-radius: 6px;
    }
    
    .lightbox-close {
        top: -45px;
        right: 10px;
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
    
    .lightbox-caption {
        padding: 18px 20px;
        margin-top: 18px;
        border-radius: 8px;
    }
    
    .lightbox-caption h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .lightbox-caption p {
        font-size: 0.9rem;
    }
    
    .lightbox-nav {
        width: calc(100% + 40px);
    }
    
    .lightbox-nav button {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .lightbox-loading {
        width: 35px;
        height: 35px;
        border-width: 2px;
    }
}

@media (max-width: 480px) {
    .lightbox-content img {
        max-height: 65vh;
    }
    
    .lightbox-caption {
        padding: 15px 18px;
        margin-top: 15px;
    }
    
    .lightbox-caption h4 {
        font-size: 1rem;
    }
    
    .lightbox-caption p {
        font-size: 0.85rem;
    }
}

/* ===== PACKAGE DETAIL PAGES ===== */
.breadcrumb {
    background-color: var(--bg-light);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

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

.breadcrumb-separator {
    color: var(--text-light);
    opacity: 0.6;
}

.breadcrumb-current {
    color: var(--primary-color);
    font-weight: 500;
}

.package-detail-hero {
    position: relative;
    min-height: 500px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    color: var(--text-white);
}

.package-detail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.package-detail-content {
    position: relative;
    z-index: 2;
}

.back-button {
    margin-bottom: 20px;
}

.back-button .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.package-detail-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-white);
}

.package-detail-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.package-detail-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 500;
}

.package-detail-meta i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.package-detail-description {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    opacity: 0.95;
}

.package-overview {
    padding: 80px 0;
    background-color: #FFFFFF;
}

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

.overview-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-light);
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
}

.overview-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.overview-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.overview-icon i {
    font-size: 2rem;
    color: var(--text-white);
}

.overview-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.overview-item p {
    color: var(--text-light);
    margin: 0;
}

.daily-itinerary {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.itinerary-day {
    background: #FFFFFF;
    border-radius: var(--border-radius-lg);
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.day-header {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    background: linear-gradient(135deg, var(--primary-color), #D35400);
    color: var(--text-white);
}

.day-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-right: 20px;
    opacity: 0.8;
}

.day-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--text-white);
}

.day-title {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.day-content {
    padding: 30px;
}

.day-activities {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.activity {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.activity-time {
    background: var(--accent-color);
    color: var(--text-white);
    padding: 8px 15px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 70px;
    text-align: center;
    flex-shrink: 0;
}

.activity-details h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.activity-details p {
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.special-features,
.premium-features {
    padding: 80px 0;
    background-color: #FFFFFF;
}

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

.feature-item {
    text-align: center;
    padding: 40px 25px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--text-white);
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.package-includes {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.includes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.includes-section h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.includes-list,
.excludes-list {
    list-style: none;
    padding: 0;
}

.includes-list li,
.excludes-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.5;
}

.includes-list i {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.excludes-list i {
    color: #E74C3C;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.package-cta {
    text-align: center;
    background: #FFFFFF;
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
}

.package-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.package-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 180px;
}

.button-separator {
    color: var(--text-white);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 10px;
    opacity: 0.8;
}

/* ===== DESTINATIONS PAGE STYLES ===== */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-white);
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/destinations-header-bg.jpg') center/cover;
    opacity: 0.2;
    z-index: -1;
}

.back-navigation {
    margin-bottom: 30px;
    text-align: left;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    padding: 12px 20px;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.back-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.back-button i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.back-button:hover i {
    transform: translateX(-3px);
}

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.breadcrumb a {
    color: var(--text-white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.separator {
    margin: 0 10px;
    opacity: 0.7;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.destinations-overview {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    background: #FFFFFF;
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--box-shadow-light);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
    border-color: var(--primary-color);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 2rem;
    color: var(--text-white);
}

.stat-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.stat-info p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

.main-destinations {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.destination-card {
    background: #FFFFFF;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover);
    border-color: var(--primary-color);
}

.destination-card.featured {
    border: 2px solid var(--accent-color);
    position: relative;
}

.destination-card.featured::before {
    content: '★ FEATURED';
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-color);
    color: var(--text-white);
    padding: 5px 12px;
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.destination-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.destination-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--text-white);
    padding: 8px 15px;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.destination-content {
    padding: 30px 25px;
}

.destination-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.destination-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.destination-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.destination-meta i {
    color: var(--primary-color);
    width: 16px;
}

.destination-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.destination-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.destination-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-light);
    padding: 8px 12px;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.destination-features i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.additional-destinations {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.destinations-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.destination-item {
    background: #FFFFFF;
    padding: 30px 25px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-light);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

.destination-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.destination-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.destination-icon i {
    font-size: 1.5rem;
    color: var(--text-white);
}

.destination-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.destination-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.destinations-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--text-white);
    text-align: center;
}

.destinations-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-white);
}

.destinations-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design for Destinations */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .back-navigation {
        margin-bottom: 20px;
        text-align: center;
    }
    
    .back-button {
        font-size: 0.85rem;
        padding: 10px 16px;
        gap: 8px;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .destination-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .destination-features {
        gap: 10px;
    }
    
    .destination-item {
        flex-direction: column;
        text-align: center;
    }
    
    .destinations-cta h2 {
        font-size: 2rem;
    }
    
    .overview-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .overview-stats {
        grid-template-columns: 1fr;
    }
    
    .destinations-list {
        grid-template-columns: 1fr;
    }
}

/* Package Detail Responsive */
@media (max-width: 768px) {
    .package-detail-title {
        font-size: 2.2rem;
    }
    
    .package-detail-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .includes-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .day-header {
        padding: 20px;
    }
    
    .day-content {
        padding: 20px;
    }
    
    .activity {
        flex-direction: column;
        gap: 10px;
    }
    
    .activity-time {
        align-self: flex-start;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== DESTINATION IMAGES STYLING ===== */
.destination-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
/* ===== DESTINATION IMAGES STYLING ===== */
.destination-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.destination-card:hover .destination-image-overlay {
    opacity: 1;
}

.destination-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    pointer-events: none;
}

/* Responsive adjustments for professional lightbox */
@media (max-width: 1024px) {
    .enhanced-lightbox-nav {
        padding: 0 20px; /* Fixed negative padding that causes overflow */
    }
    
    .enhanced-lightbox-prev {
        margin-left: 0; /* Removed negative margin that causes overflow */
    }
    
    .enhanced-lightbox-next {
        margin-right: 0; /* Removed negative margin that causes overflow */
    }
}

@media (max-width: 768px) {
    .enhanced-lightbox-nav {
        padding: 0 10px; /* Further adjusted for smaller screens */
    }
    
    .enhanced-lightbox-prev,
    .enhanced-lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}
