/* ============================================
   LUXETRAVEL — LIGHT LUXURY THEME
   ============================================ */

/* ========== CSS VARIABLES ========== */
:root {
    --gold: #C9A96E;
    --gold-light: #E8D5A3;
    --gold-dark: #A0824A;
    --gold-hover: #B8985D;
    --navy: #1E293B;
    --navy-dark: #0F172A;
    --navy-light: #334155;
    --white: #FFFFFF;
    --cream: #FAFAF8;
    --cream-dark: #F5F0E8;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
    --success: #22C55E;
    --danger: #EF4444;
    --warning: #F59E0B;
    --info: #3B82F6;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-gold: 0 4px 15px rgba(201, 169, 110, 0.3);
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

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

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
}

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

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

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--gray-100);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* ========== NAVIGATION ========== */
.navbar-luxury {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-luxury.scrolled {
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--gold) !important;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.navbar-brand i {
    color: var(--gold);
    margin-right: 8px;
}

.nav-link {
    color: var(--gray-600) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--gold) !important;
}

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

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

/* ========== BUTTONS ========== */
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white) !important;
    border: none;
    padding: 0.6rem 1.8rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.4);
    background: linear-gradient(135deg, var(--gold-hover), var(--gold-dark));
}

.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
    padding: 0.6rem 1.8rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

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

.btn-white {
    background: var(--white);
    color: var(--navy);
    border: none;
    padding: 0.6rem 1.8rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: block;
    align-items: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 50%, var(--cream-dark) 100%);
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2073&q=80') center/cover no-repeat;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.9;
}

.hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(to left, rgba(30,41,59,0.3), transparent);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid var(--gold);
    color: var(--gold-dark);
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.hero-title span {
    color: var(--gold);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 500px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* ========== SEARCH BOX ========== */
.search-box {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 10;
}

.search-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--gray-100);
    padding-bottom: 1rem;
}

.search-tab {
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-full);
    border: none;
    background: transparent;
    color: var(--gray-500);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.search-tab.active {
    background: var(--gold);
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.search-tab:hover {
    color: var(--gold);
}

.search-tab.active:hover {
    color: var(--white);
}

.search-input-group {
    position: relative;
}

.search-input-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1.1rem;
    z-index: 2;
}

.search-input {
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    color: var(--gray-800);
    padding: 0.9rem 1rem 0.9rem 2.8rem;
    border-radius: var(--radius);
    width: 100%;
    font-size: 0.95rem;
    transition: var(--transition);
}

.search-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.1);
    background: var(--white);
}

.search-input::placeholder {
    color: var(--gray-400);
}

.btn-search {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border: none;
    padding: 0.9rem 2rem;
    border-radius: var(--radius);
    font-weight: 700;
    width: 100%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    font-size: 1rem;
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ========== STATS BAR ========== */
.stats-bar {
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: 3rem 0;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 0 1rem;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--gold);
    font-weight: 700;
}

.stat-label {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-top: 0.3rem;
    font-weight: 500;
}

/* ========== SECTIONS ========== */
.section-padding {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ========== DESTINATION CARDS ========== */
.destination-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 380px;
    cursor: pointer;
    transition: var(--transition-slow);
    box-shadow: var(--shadow);
}

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

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

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

.destination-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(30,41,59,0.9), transparent);
    z-index: 1;
}

.destination-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    z-index: 2;
}

.destination-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.destination-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.destination-meta {
    color: var(--gray-300);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.destination-meta i {
    color: var(--gold);
}

.destination-price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    z-index: 2;
}

.destination-price span {
    color: var(--gold);
    font-weight: 700;
    font-size: 1rem;
}

/* ========== SERVICE CARDS ========== */
.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--shadow-sm);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--white);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 0.8rem;
}

.service-desc {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========== OFFER CARDS ========== */
.offer-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.offer-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.offer-badge {
    background: rgba(201, 169, 110, 0.1);
    color: var(--gold);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    border: 1px solid var(--gold-light);
}

.offer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 0.8rem;
}

.offer-desc {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.offer-discount {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.offer-discount span {
    font-size: 1rem;
    color: var(--gray-500);
    font-weight: 400;
}

/* ========== BLOG CARDS ========== */
.blog-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--shadow-sm);
}

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

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

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

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

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.blog-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========== TESTIMONIAL CARDS ========== */
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.testimonial-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.testimonial-name {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.2rem;
}

.testimonial-role {
    color: var(--gray-500);
    font-size: 0.85rem;
}

/* ========== PROGRESS SECTION ========== */
.progress-section {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.progress-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.progress-item:last-child {
    border-bottom: none;
}

.progress-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.progress-icon.done {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
}

.progress-icon.pending {
    background: rgba(201, 169, 110, 0.1);
    color: var(--gold);
}

.progress-text {
    flex: 1;
}

.progress-title {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.2rem;
}

.progress-desc {
    color: var(--gray-500);
    font-size: 0.85rem;
}

/* ========== FOOTER ========== */
.footer-luxury {
    background: var(--navy);
    border-top: 1px solid var(--gray-700);
    padding: 4rem 0 2rem;
    color: var(--gray-300);
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-desc {
    color: var(--gray-400);
    line-height: 1.7;
    max-width: 300px;
    font-size: 0.9rem;
}

.footer-title {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(201, 169, 110, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: var(--transition);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: var(--gray-500);
    font-size: 0.85rem;
}

/* ========== DROPDOWN ========== */
.dropdown-menu {
    background: var(--white) !important;
    border: 1px solid var(--gray-200) !important;
    border-radius: var(--radius-lg) !important;
    padding: 0.5rem !important;
    box-shadow: var(--shadow-lg) !important;
}

.dropdown-item {
    color: var(--gray-600) !important;
    padding: 0.6rem 1rem !important;
    border-radius: var(--radius) !important;
    transition: var(--transition) !important;
}

.dropdown-item:hover {
    background: var(--cream) !important;
    color: var(--gold) !important;
}

.dropdown-item i {
    width: 20px;
    margin-right: 8px;
    color: var(--gold);
}

.dropdown-divider {
    border-color: var(--gray-200) !important;
}

/* ========== ANIMATIONS ========== */
@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite;
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .hero-bg-pattern {
        width: 100%;
        clip-path: none;
        opacity: 0.2;
    }
    .hero-overlay {
        width: 100%;
        clip-path: none;
    }
    .search-box {
        padding: 1.5rem;
    }
    .search-tabs {
        flex-wrap: wrap;
    }
    .destination-card {
        height: 300px;
    }
    .section-padding {
        padding: 3rem 0;
    }
    .progress-section {
        padding: 2rem;
    }
}