/* ===== RESET & VARIABLES ===== */
:root {
    /* Color Palette */
    --primary: #FF6B6B;
    --secondary: #4ECDC4;
    --accent-1: #FFE66D;
    --accent-2: #FF9F1C;
    --accent-3: #BFD7EA;
    --dark: #2C3E50;
    --light: #F7F9FC;
    --gray: #6c757d;
    --white: #ffffff;
    --black: #000000;
    
    /* Footer Colors - Solid */
    --footer-bg: #1a1a2e;
    --footer-text: #ffffff;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow: 0 5px 20px rgba(0,0,0,0.1);
    --shadow-hover: 0 10px 30px rgba(0,0,0,0.15);
    --shadow-lg: 0 15px 40px rgba(0,0,0,0.2);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF6B6B, #FF9F1C);
    --gradient-secondary: linear-gradient(135deg, #4ECDC4, #BFD7EA);
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius: 15px;
    --radius-lg: 25px;
    --radius-full: 50%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 15px;
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 1rem; padding-bottom: 1rem; }
.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }

.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 1rem; padding-right: 1rem; }
.px-4 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-5 { padding-left: 3rem; padding-right: 3rem; }

.img-fluid {
    max-width: 100%;
    height: auto;
}

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow { box-shadow: var(--shadow); }
.shadow-hover { box-shadow: var(--shadow-hover); }
.shadow-lg { box-shadow: var(--shadow-lg); }

.rounded-sm { border-radius: var(--radius-sm); }
.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-full { border-radius: var(--radius-full); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--white);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-outline-secondary {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

.btn-outline-secondary:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-light {
    background: var(--white);
    color: var(--primary);
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-book {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    width: 100%;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-book::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: var(--transition);
    z-index: -1;
}

.btn-book:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255,107,107,0.4);
}

.btn-book:hover::before {
    left: 100%;
}

.btn-submit {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    width: 100%;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-submit::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: var(--transition);
    z-index: -1;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255,107,107,0.4);
}

.btn-submit:hover::before {
    left: 100%;
}

/* ===== STICKY HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--gradient-primary);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.site-header.scrolled {
    padding: 5px 0;
    box-shadow: var(--shadow-lg);
}

.navbar {
    padding: 15px 0;
    transition: var(--transition);
}

.navbar-brand {
    display: flex;
    align-items: center;
    color: var(--white) !important;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.navbar-brand i {
    margin-right: 10px;
    color: var(--accent-1);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-toggler {
    border: 2px solid rgba(255,255,255,0.5);
    padding: 8px 12px;
    color: var(--white);
    background: transparent;
    transition: var(--transition);
    border-radius: var(--radius-sm);
}

.navbar-toggler:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.navbar-toggler i {
    font-size: 1.2rem;
}

.navbar-nav {
    align-items: center;
}

.nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    padding: 8px 20px !important;
    margin: 0 5px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
}

.nav-link i {
    margin-right: 5px;
    transition: var(--transition);
}

.nav-link:hover {
    background: rgba(255,255,255,0.2);
    color: var(--white) !important;
    transform: translateY(-2px);
}

.nav-link:hover i {
    transform: rotate(360deg);
}

.nav-link.active {
    background: rgba(255,255,255,0.3);
    color: var(--white) !important;
    font-weight: 600;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slide {
    position: relative;
    height: 600px;
    display: none;
}

.slide:first-child {
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 10s infinite alternate;
}

@keyframes zoomIn {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
    width: 80%;
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, -30%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.slide-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: slideInLeft 1s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    animation: slideInRight 1s ease 0.2s both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slider Controls */
.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.slick-prev {
    left: 30px;
}

.slick-next {
    right: 30px;
}

.slick-prev:hover,
.slick-next:hover {
    background: rgba(255,255,255,0.4);
    transform: translateY(-50%) scale(1.1);
}

.slick-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    list-style: none;
    z-index: 3;
    gap: 10px;
}

.slick-dots li {
    cursor: pointer;
}

.slick-dots button {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.5);
    border: none;
    font-size: 0;
    cursor: pointer;
    transition: var(--transition);
}

.slick-dots .slick-active button {
    background: var(--white);
    transform: scale(1.2);
    width: 30px;
    border-radius: 10px;
}

/* ===== SECTION TITLES ===== */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.section-title:hover h2:after {
    width: 120px;
}

.section-title p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: var(--gradient-primary);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/pattern.png') repeat;
    opacity: 0.1;
    animation: slide 20s linear infinite;
}

@keyframes slide {
    from { background-position: 0 0; }
    to { background-position: 100% 100%; }
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* ===== WELCOME SECTION ===== */
.welcome-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, var(--white));
}

.welcome-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.welcome-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.welcome-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.welcome-image:hover img {
    transform: scale(1.1);
}

.welcome-content {
    padding-left: 30px;
}

.welcome-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
    position: relative;
    padding-bottom: 15px;
}

.welcome-content h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
}

.welcome-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature-box {
    text-align: center;
    padding: 25px 15px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.1;
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-box:hover::before {
    left: 0;
}

.feature-box i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    transition: var(--transition);
}

.feature-box:hover i {
    transform: scale(1.2) rotate(360deg);
}

.feature-box h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}

.feature-box p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

/* ===== PACKAGES SECTION ===== */
.packages-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.package-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
}

.package-card.featured {
    border: 3px solid var(--accent-1);
    position: relative;
}

.package-card.featured::before {
    content: '🌟 Featured';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--accent-1);
    color: var(--dark);
    padding: 8px 40px;
    transform: rotate(45deg);
    font-size: 0.9rem;
    font-weight: bold;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.package-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.package-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition);
}

.package-card:hover .package-image::after {
    left: 100%;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.2);
}

.package-content {
    padding: 25px;
    position: relative;
}

.package-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
    transition: var(--transition);
}

.package-card:hover .package-content h3 {
    color: var(--primary);
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    transition: var(--transition);
}

.package-card:hover .package-price {
    transform: scale(1.05);
}

.package-price small {
    font-size: 1rem;
    color: var(--gray);
    font-weight: normal;
}

.package-duration {
    background: var(--accent-3);
    display: inline-block;
    padding: 5px 20px;
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    margin-bottom: 15px;
    transition: var(--transition);
}

.package-card:hover .package-duration {
    background: var(--secondary);
    color: var(--white);
}

.package-description {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.package-inclusions {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.package-inclusions li {
    margin-bottom: 8px;
    color: #555;
    transition: var(--transition);
}

.package-card:hover .package-inclusions li {
    transform: translateX(5px);
}

.package-inclusions li i {
    color: var(--secondary);
    margin-right: 10px;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 80px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 280px;
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hover);
    z-index: 10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-item:hover img {
    transform: scale(1.2);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--white);
    padding: 25px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    margin: 0 0 5px;
    font-size: 1.2rem;
    font-weight: 600;
}

.gallery-overlay p {
    margin: 0 0 15px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.overlay-icons {
    display: flex;
    gap: 15px;
}

.overlay-icons a {
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.overlay-icons a:hover {
    color: var(--primary);
    transform: scale(1.2);
}

/* Video Gallery */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.video-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: fadeInUp 0.6s ease;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 20px;
}

.video-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}

.video-info p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Gallery Filter */
.gallery-filter-section {
    background: #f8f9fa;
    padding: 20px 0;
}

.filter-btn {
    padding: 10px 30px;
    font-weight: 600;
    transition: var(--transition);
    border-radius: var(--radius-lg);
}

.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.filter-btn:hover {
    transform: translateY(-2px);
}

/* ===== TEAM SECTION ===== */
.team-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    animation: fadeIn 1s ease;
}

.team-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
}

.team-image-wrapper {
    position: relative;
    overflow: hidden;
}

.team-image {
    width: 200px;
    height: 200px;
    border-radius: var(--radius-full);
    margin: 30px auto 20px;
    overflow: hidden;
    border: 5px solid var(--accent-3);
    transition: var(--transition-slow);
    position: relative;
}

.team-card:hover .team-image {
    border-color: var(--primary);
    transform: rotate(360deg) scale(1.1);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.team-card:hover .team-image img {
    transform: scale(1.2);
}

.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    transform: translateY(100%);
    transition: var(--transition);
}

.team-card:hover .team-social {
    transform: translateY(0);
}

.team-social a {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--primary);
    transform: translateY(-3px) rotate(360deg);
}

.team-info {
    padding: 0 25px 30px;
}

.team-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--dark);
    transition: var(--transition);
}

.team-card:hover .team-info h3 {
    color: var(--primary);
}

.team-info .position {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 15px;
    transition: var(--transition);
}

.team-card:hover .position {
    color: var(--secondary);
}

.team-info .bio {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Team Intro */
.team-intro {
    padding: 60px 0;
    background: var(--white);
}

.intro-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.intro-content p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
}

.team-stats {
    margin-top: 30px;
}

.stat-box {
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-box h3 {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-box p {
    color: var(--gray);
    margin: 0;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.feature-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin-bottom: 30px;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 2rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: rotate(360deg) scale(1.1);
}

.feature-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-info {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    height: 100%;
    transition: var(--transition);
    animation: slideInLeft 1s ease;
}

.contact-info:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.contact-info h3 {
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-weight: 700;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.contact-info-item:hover {
    transform: translateX(10px);
}

.contact-info-item i {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 15px;
    transition: var(--transition);
}

.contact-info-item:hover i {
    transform: rotate(360deg);
    background: rgba(255,255,255,0.3);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    animation: slideInRight 1s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255,107,107,0.1);
    transform: translateY(-2px);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.form-select:focus {
    outline: none;
    border-color: var(--primary);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/pattern.png') repeat;
    opacity: 0.1;
    animation: slide 20s linear infinite;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.cta-section .btn {
    position: relative;
    z-index: 1;
    padding: 15px 40px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: var(--transition);
}

.cta-section .btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* ===== FOOTER - SINGLE COLOR SCHEME ===== */
.site-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 60px 0 20px;
    margin-top: 50px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-widget h4 {
    color: var(--footer-text);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h4 i {
    margin-right: 10px;
    color: var(--footer-text);
}

.footer-widget h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: rgba(255,255,255,0.3);
}

.footer-widget p {
    color: var(--footer-text);
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--footer-text);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    opacity: 0.9;
}

.footer-links a:hover {
    opacity: 1;
    transform: translateX(5px);
}

.footer-links i {
    margin-right: 10px;
    font-size: 0.8rem;
    color: var(--footer-text);
}

/* Contact Info */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: var(--footer-text);
    opacity: 0.9;
    line-height: 1.6;
}

.contact-info li i {
    margin-right: 10px;
    color: var(--footer-text);
    width: 20px;
    margin-top: 3px;
}

/* Social Links */
.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    color: var(--footer-text);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom hr {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 30px 0 20px;
}

.copyright {
    text-align: center;
    color: var(--footer-text);
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.copyright i {
    color: var(--footer-text);
    margin: 0 3px;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--footer-bg);
    color: var(--footer-text);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.back-to-top:hover {
    background-color: var(--footer-text);
    color: var(--footer-bg);
    transform: translateY(-5px);
    border-color: transparent;
}

.back-to-top.show {
    display: flex;
    animation: bounceIn 0.5s ease;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37,211,102,0.3);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37,211,102,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    color: var(--white);
    animation: none;
}

.whatsapp-float span {
    position: absolute;
    right: 70px;
    background: var(--dark);
    color: var(--white);
    padding: 5px 15px;
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-float:hover span {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

/* ===== LIGHTBOX ===== */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 5px solid var(--white);
    border-radius: var(--radius);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.3);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--white);
    font-size: 1.2rem;
    padding: 10px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--white);
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10000;
}

.lightbox-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    padding: 20px;
    transition: var(--transition);
    z-index: 10000;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

/* ===== PACKAGE DETAIL PAGE ===== */
.package-main-image {
    margin-bottom: 30px;
}

.package-main-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.package-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.package-gallery-grid img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.package-gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow);
}

.itinerary-item {
    display: flex;
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.itinerary-item:hover {
    transform: translateX(5px);
    background: #e9ecef;
}

.itinerary-item i {
    color: var(--secondary);
    margin-right: 15px;
    margin-top: 3px;
}

/* ===== BOOKING PAGE ===== */
.booking-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.booking-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: var(--radius-sm);
    margin: 20px 0;
}

.booking-summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dee2e6;
}

.booking-summary-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.booking-total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.booking-success {
    background: #d4edda;
    color: #155724;
    padding: 40px;
    border-radius: var(--radius);
    text-align: center;
}

.booking-success i {
    font-size: 5rem;
    margin-bottom: 20px;
    color: #28a745;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .packages-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
    
    .slide-content h2 {
        font-size: 2.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-stats .col-4 {
        width: 100%;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .navbar-nav {
        padding: 15px 0;
    }
    
    .nav-link {
        text-align: center;
        margin: 5px 0;
    }
    
    .hero-slider,
    .slide {
        height: 400px;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .welcome-content {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .feature-grid {
        gap: 15px;
    }
    
    .feature-box {
        padding: 15px;
    }
    
    .packages-grid,
    .gallery-grid,
    .team-grid,
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 220px;
    }
    
    .team-image {
        width: 150px;
        height: 150px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 25px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 20px;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-close {
        font-size: 40px;
        top: 20px;
        right: 20px;
    }
    
    .footer-widget {
        text-align: center;
    }
    
    .footer-widget h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-info li {
        justify-content: center;
    }
    
    .social-links {
        text-align: center;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .slide-content h2 {
        font-size: 1.5rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    .stat-box {
        margin-bottom: 15px;
    }
    
    .stat-box h3 {
        font-size: 1.5rem;
    }
    
    .package-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .site-header,
    .site-footer,
    .whatsapp-float,
    .back-to-top,
    .btn,
    .slick-prev,
    .slick-next,
    .slick-dots {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    a {
        color: black;
        text-decoration: underline;
    }
}