@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    /* Minimalist Premium Luxury Palette (Airbnb / Luxe Inspired) */
    --primary: #FF385C; /* Elegant Coral Red */
    --primary-dark: #D90B38;
    --secondary: #111827; /* Deep Elegant Black/Grey */
    --text-main: #222222;
    --text-light: #717171;
    --bg-light: #F7F7F9;
    --bg-white: #FFFFFF;
    --border-color: #EBEBEB;
    
    /* Typography */
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    
    /* Clean Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 6px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);
    --shadow-primary: 0 8px 20px rgba(255, 56, 92, 0.25);
    
    /* Modern Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    /* Extremely Smooth Transitions */
    --transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    font-family: var(--font-primary);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

ul {
    list-style: none;
}

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

/* Utilities */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.section-padding { padding: 90px 0; }
.bg-light { background-color: var(--bg-light); }

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gradient-text {
    color: var(--primary);
}

/* Premium Glassmorphism */
.glassmorphism {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-color);
}

/* Elegant Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 1rem;
    font-family: var(--font-primary);
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.btn-glass {
    background: white;
    color: var(--secondary);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.btn-glass:hover {
    border-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* Header & Navbar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    padding: 5px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

.logo-img {
    height: 45px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-main);
    position: relative;
    padding: 8px 0;
    font-size: 1rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

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

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

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.hero-title .gradient-text {
    color: white;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Modern Search Bar */
.search-bar-container {
    position: relative;
    max-width: 900px;
    margin: -50px auto 0;
    z-index: 10;
    border-radius: 100px;
    padding: 10px;
    box-shadow: var(--shadow-lg);
    background: white;
    border: 1px solid var(--border-color);
}

.search-form {
    display: flex;
    gap: 5px;
    align-items: center;
}

.input-group {
    flex: 1;
    display: flex;
    align-items: center;
    background: transparent;
    padding: 12px 20px;
    border-right: 1px solid var(--border-color);
}

.input-group:last-of-type {
    border-right: none;
}

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

.input-group input, .input-group select {
    border: none;
    outline: none;
    width: 100%;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1rem;
    background: transparent;
    color: var(--secondary);
}

.input-group input::placeholder {
    color: #717171;
}

.search-btn {
    border-radius: 50px;
    padding: 14px 32px;
    margin-left: 5px;
}

/* Grid Layouts */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

/* Elegant Cards UI */
.card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--border-color);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

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

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

.card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(4px);
    color: var(--secondary);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.wishlist-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    cursor: pointer;
    z-index: 2;
    transition: var(--transition);
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
}

.wishlist-btn:hover {
    color: var(--primary);
    transform: scale(1.05);
}

.card-content {
    padding: 20px;
}

.card-title {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
}

.card-meta i {
    color: var(--text-main);
    margin-right: 4px;
}

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

.original-price {
    text-decoration: line-through;
    color: #B0B0B0;
    font-size: 0.85rem;
}

.discount-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

/* Category Tabs */
.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 10px 24px;
    border: 1px solid var(--border-color);
    background: white;
    color: var(--text-main);
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.tab-btn.active, .tab-btn:hover {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
}

/* Refined Testimonials */
.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    width: calc(33.333% - 24px);
    min-width: 300px;
    position: relative;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.t-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.t-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 16px;
}

.t-name {
    font-weight: 600;
    color: var(--secondary);
    font-size: 1.05rem;
}

.t-package {
    font-size: 0.85rem;
    color: var(--text-light);
}

.t-rating {
    color: var(--secondary); 
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.t-rating i {
    color: var(--secondary);
}

.t-text {
    color: var(--text-main);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* CTA Section Update */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: url('https://images.unsplash.com/photo-1473625247510-8ceb1760943f?w=1920&q=80') center/cover no-fixed;
}

.cta-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(17, 24, 39, 0.85);
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 32px;
    color: #E5E7EB;
}

/* Clean Footer Update */
.footer {
    background: var(--bg-light);
    color: var(--text-main);
    padding: 80px 0 24px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    display: block;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

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

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

.footer-col h4 {
    color: var(--secondary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-col p {
    color: var(--text-light);
}

.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--text-light); font-weight: 500; }
.footer-links a:hover { color: var(--primary); }

.contact-info li {
    display: flex;
    margin-bottom: 16px;
    color: var(--text-light);
    font-weight: 500;
}

.contact-info i {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-right: 12px;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Float Buttons */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: #25D366;
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: white;
    color: var(--secondary);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.back-to-top:hover {
    border-color: var(--secondary);
    color: var(--primary);
}
