/* 
   Yug Events and Holidays - Premium Design System
   Visual Style: Luxury Travel, Sleek, Glassmorphism, Bold Contrast
   Color Scheme: Orange + Black + White
*/

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* --- Design Variables --- */
:root {
    --primary: #F97316;
    --primary-dark: #EA580C;
    --black: #111111;
    --black-pure: #000000;
    --dark-gray: #1F1F1F;
    --medium-gray: #333333;
    --light-gray: #F8F8F8;
    --white: #FFFFFF;
    --text-main: #333333;
    --text-muted: #666666;
    --text-light: #E5E7EB;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius: 12px;
}

/* --- Base & Reset Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text-main);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

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

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--black);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* --- Utility Components --- */
.container {
    width: 90%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header .subtitle {
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--primary);
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--black);
    position: relative;
    padding-bottom: 20px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.section-header p {
    margin-top: 15px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Dark Section overrides */
.dark-section {
    background-color: var(--black);
    color: var(--text-light);
}

.dark-section h2, .dark-section h3 {
    color: var(--white);
}

.dark-section .section-header p {
    color: #9CA3AF;
}

/* --- Dynamic Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn i {
    margin-left: 8px;
    font-size: 0.85rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
    color: var(--white);
}

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

.btn-outline:hover {
    background-color: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

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

.btn-outline-dark:hover {
    background-color: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: var(--white);
    transform: translateY(-2px);
}

/* --- Header & Navigation --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

header.scrolled {
    background-color: var(--black-pure);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

header.scrolled .container {
    padding: 15px 0;
}

.logo-container h1 {
    font-size: 1.6rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-body);
    font-weight: 800;
}

.logo-container span {
    color: var(--primary);
}

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

.nav-menu li {
    margin-left: 35px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

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

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

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--white);
    transition: var(--transition);
}

/* Hamburger active animation */
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

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

/* --- Hero Showcase Slider --- */
.hero-slider {
    position: relative;
    height: 100vh;
    background-color: var(--black-pure);
    overflow: hidden;
}

.slider-container {
    height: 100%;
    width: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 3;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    width: 90%;
    max-width: 900px;
}

.hero-content h2 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 25px;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 40px;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slide Indicator Controls */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    display: flex;
    gap: 15px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background-color: var(--primary);
    transform: scale(1.3);
}

/* --- Page Banner --- */
.page-banner {
    position: relative;
    padding: 180px 0 100px;
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-banner h2 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.page-banner p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* --- About Us Teaser Section --- */
.about-teaser {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-box {
    position: relative;
}

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

.about-img-box::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 150px;
    height: 150px;
    border-top: 5px solid var(--primary);
    border-left: 5px solid var(--primary);
    border-top-left-radius: var(--border-radius);
    z-index: -1;
}

.about-teaser-content h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.about-teaser-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-highlights {
    list-style: none;
    margin-bottom: 35px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.about-highlights li {
    font-weight: 600;
    color: var(--black);
    display: flex;
    align-items: center;
}

.about-highlights li i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 1.1rem;
}

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

.feature-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--primary);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-card:hover::before {
    transform: scaleY(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius);
    background-color: rgba(249, 115, 22, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 25px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background-color: var(--primary);
    color: var(--white);
}

.feature-card h3, .dark-section .feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--black);
}

.feature-card p {
    color: var(--text-muted);
}

/* --- Featured Destinations Section --- */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.destination-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 400px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    z-index: 2;
    transition: var(--transition);
}

.destination-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.destination-card h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 8px;
    transition: var(--transition);
}

.destination-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    opacity: 0.9;
    transform: translateY(20px);
    transition: var(--transition);
    max-height: 0;
    overflow: hidden;
}

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

.destination-card:hover .destination-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.95) 100%);
}

.destination-card:hover p {
    transform: translateY(0);
    max-height: 100px;
    opacity: 1;
}

.destination-card .btn-card {
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
    color: var(--primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.destination-card:hover .btn-card {
    opacity: 1;
    transform: translateY(0);
}

.destination-card .btn-card i {
    margin-left: 8px;
}

/* --- Featured Tour Packages --- */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.package-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

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

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

.package-card:hover .package-img-box img {
    transform: scale(1.08);
}

.package-duration {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(17, 17, 17, 0.9);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.package-duration i {
    color: var(--primary);
    margin-right: 6px;
}

.package-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.package-body h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    font-family: var(--font-body);
    font-weight: 700;
}

.package-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.package-highlights span {
    background-color: var(--light-gray);
    color: var(--medium-gray);
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.package-highlights span i {
    color: var(--primary);
    margin-right: 5px;
    font-size: 0.75rem;
}

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

.package-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 20px;
    margin-top: auto;
}

.package-price {
    display: flex;
    flex-direction: column;
}

.package-price .label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-price .price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
}

.package-rating {
    display: flex;
    align-items: center;
}

.package-rating i {
    color: #FBBF24;
    font-size: 0.9rem;
    margin-right: 2px;
}

.package-rating span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-left: 5px;
}

.package-footer-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.package-footer-btns .btn {
    padding: 10px 15px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* --- Testimonials Section --- */
.testimonials-section {
    position: relative;
    background-size: cover;
    background-position: center;
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

.testimonial-item {
    text-align: center;
    display: none;
    animation: fadeIn 0.8s ease;
}

.testimonial-item.active {
    display: block;
}

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

.testimonial-icon {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.2;
    margin-bottom: 25px;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid var(--primary);
}

.testimonial-author h4 {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--white);
    font-size: 1.15rem;
}

.testimonial-author p {
    color: var(--primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* Slider indicators */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background-color: var(--primary);
    transform: scale(1.2);
}

/* --- Call To Action Background Banner --- */
.cta-banner {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--white);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.85));
    z-index: 1;
}

.cta-banner .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

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

.cta-banner p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* --- About Us Page Elements --- */
.about-story-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story-img img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.about-story-text h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

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

.mission-vision-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background-color: var(--white);
    padding: 50px 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.mv-card .icon {
    width: 70px;
    height: 70px;
    background-color: rgba(249, 115, 22, 0.08);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.mv-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.mv-card p {
    color: var(--text-muted);
}

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

.value-card {
    background-color: var(--dark-gray);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.value-card i {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 20px;
}

.value-card h4 {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.value-card p {
    color: #9CA3AF;
    font-size: 0.9rem;
}

/* --- Destinations Filter Page --- */
.destinations-filter-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: var(--light-gray);
    color: var(--medium-gray);
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

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

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

.catalog-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.catalog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.catalog-img-box {
    position: relative;
    height: 260px;
    overflow: hidden;
}

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

.catalog-card:hover .catalog-img-box img {
    transform: scale(1.08);
}

.catalog-info {
    padding: 30px;
}

.catalog-info h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    font-family: var(--font-body);
    font-weight: 700;
}

.catalog-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.catalog-info h4 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--black);
}

.catalog-attractions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.catalog-attractions span {
    background-color: rgba(249, 115, 22, 0.06);
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 30px;
}

/* --- Gallery Page --- */
.gallery-grid {
    columns: 4 280px;
    column-gap: 20px;
    width: 100%;
}

.gallery-item {
    background-color: var(--white);
    margin-bottom: 20px;
    break-inside: avoid;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(249, 115, 22, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--white);
    padding: 20px;
    text-align: center;
}

.gallery-hover i {
    font-size: 2rem;
    margin-bottom: 10px;
    transform: translateY(-15px);
    transition: var(--transition);
}

.gallery-hover h4 {
    font-family: var(--font-body);
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 5px;
    transform: translateY(15px);
    transition: var(--transition);
}

.gallery-hover span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.gallery-item:hover .gallery-hover i,
.gallery-item:hover .gallery-hover h4 {
    transform: translateY(0);
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    position: relative;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}

.lightbox-caption {
    color: var(--white);
    margin-top: 20px;
    font-size: 1.3rem;
    font-family: var(--font-heading);
}

.lightbox-close {
    position: absolute;
    top: 40px;
    right: 40px;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2100;
}

.lightbox-close:hover {
    color: var(--primary);
}

/* --- Contact & Enquiry Page Layout --- */
.contact-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.contact-info-column h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.contact-info-column > p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 45px;
}

.contact-detail-card {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.contact-detail-card:hover {
    background-color: var(--white);
    box-shadow: var(--shadow-md);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-right: 25px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-detail-card:hover .contact-card-icon {
    background-color: var(--primary);
    color: var(--white);
}

.contact-card-text h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.contact-card-text p, .contact-card-text a {
    color: var(--text-muted);
    font-weight: 500;
}

.contact-card-text a:hover {
    color: var(--primary);
}

.map-embed-wrapper {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Inquiry Form Card */
.enquiry-form-card {
    background-color: var(--white);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.enquiry-form-card h3 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.enquiry-form-card > p {
    color: var(--text-muted);
    margin-bottom: 35px;
}

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

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--black);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    border: 1.5px solid #E5E7EB;
    background-color: var(--white);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--black);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

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

/* Form Success & Error States */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #EF4444;
}

.error-message {
    color: #EF4444;
    font-size: 0.8rem;
    margin-top: 5px;
    font-weight: 500;
}

.success-message {
    text-align: center;
    padding: 40px 20px;
    animation: fadeInUp 0.5s ease;
}

.success-message i {
    font-size: 4rem;
    color: #10B981;
    margin-bottom: 20px;
}

.success-message h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.success-message p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* FAQ Accordion Section */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.faq-question {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--black);
}

.faq-icon-box {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.faq-answer {
    padding: 0 30px 24px;
    color: var(--text-muted);
    display: none;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Active FAQ */
.faq-item.active {
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 0, 0, 0.08);
}

.faq-item.active .faq-icon-box {
    background-color: var(--primary);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    display: block;
}

/* --- Floating Components --- */

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(15deg);
    background-color: #128C7E;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
    color: var(--white);
}

/* AI Chatbot System */
.ai-chatbot {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    font-family: var(--font-body);
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
    transition: var(--transition);
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    background-color: var(--primary-dark);
}

.chat-window {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 380px;
    height: 520px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
    animation: chatOpen 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.chat-header {
    background-color: var(--black);
    color: var(--white);
    padding: 20px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--primary);
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-right: 15px;
    font-size: 1.2rem;
}

.chat-bot-info h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
}

.chat-bot-info span {
    font-size: 0.75rem;
    color: #10B981;
    display: flex;
    align-items: center;
}

.chat-bot-info span::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #10B981;
    border-radius: 50%;
    margin-right: 6px;
}

.chat-close {
    margin-left: auto;
    cursor: pointer;
    font-size: 1.2rem;
    color: #9CA3AF;
    transition: var(--transition);
}

.chat-close:hover {
    color: var(--white);
}

.chat-messages {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: var(--light-gray);
}

.message {
    max-width: 80%;
    padding: 12px 18px;
    border-radius: 18px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.message-bot {
    background-color: var(--white);
    color: var(--black);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    box-shadow: var(--shadow-sm);
}

.message-user {
    background-color: var(--primary);
    color: var(--white);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.reply-chip {
    background-color: var(--light-gray);
    color: var(--black);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.reply-chip:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: transparent;
}

.chat-input-area {
    padding: 15px 20px;
    background-color: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 10px;
    align-items: center;
}

.chat-input-area input {
    flex-grow: 1;
    border: 1px solid #E5E7EB;
    padding: 12px 16px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.chat-input-area input:focus {
    border-color: var(--primary);
}

.chat-send-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1rem;
}

.chat-send-btn:hover {
    background-color: var(--primary-dark);
}

/* Typing Indicator Animation */
.typing-indicator {
    display: flex;
    gap: 4px;
    align-items: center;
    padding: 5px 0;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background-color: var(--text-muted);
    border-radius: 50%;
    animation: typing 1s infinite alternate;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    from {
        opacity: 0.3;
        transform: translateY(0);
    }
    to {
        opacity: 1;
        transform: translateY(-4px);
    }
}

/* --- Premium Modal Structure --- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1500;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-y: auto;
}

.modal-content {
    background-color: var(--white);
    border-radius: var(--border-radius);
    width: 100%;
    max-width: 700px;
    position: relative;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: modalOpen 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}

@keyframes modalOpen {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 1.8rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    color: var(--primary);
}

.modal-body {
    padding: 40px;
    overflow-y: auto;
}

/* Modal specific detail elements */
.modal-package-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 20px;
}

.modal-package-header h2 {
    font-size: 2.2rem;
}

.modal-package-header .price-tag {
    text-align: right;
}

.modal-package-header .price-tag span {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-package-header .price-tag h3 {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 800;
}

.modal-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.modal-highlight-item {
    background-color: var(--light-gray);
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

.modal-highlight-item i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-right: 12px;
}

.modal-highlight-item span {
    font-weight: 600;
    font-size: 0.9rem;
}

.modal-description-box {
    margin-bottom: 35px;
}

.modal-description-box h4 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.modal-description-box p {
    color: var(--text-muted);
}

/* --- Footer --- */
footer {
    background-color: var(--black-pure);
    color: var(--text-light);
    padding-top: 80px;
    border-top: 2px solid var(--primary);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-column h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-family: var(--font-body);
    font-weight: 800;
}

.footer-column h3 span {
    color: var(--primary);
}

.footer-column h4 {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-column p {
    color: #9CA3AF;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #9CA3AF;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.footer-links a i {
    font-size: 0.75rem;
    margin-right: 8px;
    color: var(--primary);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-links a:hover i {
    transform: translateX(4px);
}

.footer-contact-info {
    list-style: none;
}

.footer-contact-info li {
    display: flex;
    margin-bottom: 15px;
    color: #9CA3AF;
}

.footer-contact-info li i {
    color: var(--primary);
    margin-right: 15px;
    font-size: 1.1rem;
    margin-top: 5px;
}

.footer-contact-info li a {
    color: #9CA3AF;
}

.footer-contact-info li a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--dark-gray);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1rem;
}

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

.footer-bottom {
    background-color: #0b0b0b;
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: #6B7280;
    font-size: 0.9rem;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .section-header h2 {
        font-size: 2.3rem;
    }
    
    .hero-content h2 {
        font-size: 3rem;
    }
    
    .about-teaser {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-img-box img {
        height: 400px;
    }
    
    .about-story-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--black);
        flex-direction: column;
        justify-content: center;
        z-index: 1000;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 20px 0;
        margin-left: 0;
    }
    
    .nav-link {
        font-size: 1.15rem;
    }
    
    .header-action {
        display: none;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.05rem;
    }
    
    .section-padding {
        padding: 70px 0;
    }
    
    .mission-vision-boxes {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .enquiry-form-card {
        padding: 30px 20px;
    }
    
    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 2rem;
    }
    
    .ai-chatbot {
        bottom: 20px;
        left: 20px;
    }
    
    .chat-window {
        width: calc(100vw - 40px);
        height: 480px;
        bottom: 70px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-btns .btn {
        width: 100%;
    }
}