/* ===== CSS VARIABLES ===== */
:root {
    --warm-beige: #F5EFE6;
    --terracotta: #C5705D;
    --forest-green: #3A4F3B;
    --cream-white: #FFFDF8;
    --charcoal: #2B2B2B;
    --overlay-dark: rgba(43, 43, 43, 0.5);
    
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Poppins', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    color: var(--charcoal);
    background-color: var(--cream-white);
    overflow-x: hidden;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
}

/* ===== NAVIGATION ===== */
.navbar {
    background: transparent;
    transition: var(--transition-smooth);
    padding: 1.5rem 0;
}

.navbar.scrolled {
    background: rgba(255, 253, 248, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cream-white) !important;
    transition: var(--transition-smooth);
}

.navbar.scrolled .navbar-brand {
    color: var(--terracotta) !important;
}

.navbar-brand i {
    color: var(--terracotta);
    margin-right: 0.5rem;
}

.nav-link {
    color: var(--cream-white) !important;
    font-weight: 500;
    margin: 0 1rem;
    position: relative;
    transition: var(--transition-smooth);
}

.navbar.scrolled .nav-link {
    color: var(--charcoal) !important;
}

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

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

.wishlist-icon {
    font-size: 1.2rem;
}

.btn-primary-custom {
    background: var(--terracotta);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    color: white;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.btn-primary-custom:hover {
    background: var(--forest-green);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(197, 112, 93, 0.3);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--charcoal) 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?w=1920&h=1080&fit=crop') center/cover;
    opacity: 0.3;
    animation: parallax 20s ease infinite;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(180deg, rgba(43,43,43,0.4) 0%, rgba(58,79,59,0.6) 100%); */
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(245, 239, 230, 0.6);
    border-radius: 50%;
    animation: float 15s infinite;
    box-shadow: 0 0 10px rgba(245, 239, 230, 0.5);
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 30%; animation-delay: 2s; animation-duration: 15s; }
.particle:nth-child(3) { left: 50%; animation-delay: 4s; animation-duration: 18s; }
.particle:nth-child(4) { left: 70%; animation-delay: 1s; animation-duration: 14s; }
.particle:nth-child(5) { left: 90%; animation-delay: 3s; animation-duration: 16s; }

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

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

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 1s forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

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

/* Search Box */
.search-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.search-input-group {
    position: relative;
    padding: 1rem;
    border-right: 1px solid #e0e0e0;
}

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

.search-input-group i {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--terracotta);
    font-size: 1.1rem;
}

.search-input-group input {
    border: none;
    padding-left: 2.5rem;
    background: transparent;
    color: var(--charcoal);
    font-weight: 500;
}

.search-input-group input:focus {
    outline: none;
    box-shadow: none;
}

.search-input-group input::placeholder {
    color: #999;
}

.btn-search {
    width: 100%;
    background: var(--terracotta);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-search::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-search:hover::before {
    width: 300px;
    height: 300px;
}

.btn-search:hover {
    background: var(--forest-green);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(197, 112, 93, 0.4);
}

.btn-search span {
    margin-right: 0.5rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    color: var(--cream-white);
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--cream-white);
    border-radius: 20px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--cream-white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 22px; }
}

/* ===== FEATURED SECTION ===== */
.featured-section {
    padding: 6rem 0;
    background: var(--cream-white);
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
}

.destination-card-wrapper {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.6s forwards;
}

.destination-card-wrapper:nth-child(1) { animation-delay: 0.1s; }
.destination-card-wrapper:nth-child(2) { animation-delay: 0.2s; }
.destination-card-wrapper:nth-child(3) { animation-delay: 0.3s; }
.destination-card-wrapper:nth-child(4) { animation-delay: 0.4s; }
.destination-card-wrapper:nth-child(5) { animation-delay: 0.5s; }
.destination-card-wrapper:nth-child(6) { animation-delay: 0.6s; }

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

.destination-card {
    border-radius: 15px;
    overflow: hidden;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

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

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 100%);
    padding: 1rem;
}

.rating {
    background: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
}

.rating i {
    color: #FFB800;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.price {
    color: var(--terracotta);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.price strong {
    font-size: 1.4rem;
}

.description {
    color: #666;
    margin-bottom: 1rem;
}

.btn-view {
    color: var(--terracotta);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.btn-view:hover {
    gap: 1rem;
    color: var(--forest-green);
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--warm-beige) 0%, #e8dfd0 100%);
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    transition: var(--transition-bounce);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 50px rgba(197, 112, 93, 0.2);
}

.icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(169deg, #EE5B3B 0%, #9B4B39 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.feature-card:hover .icon-wrapper {
    transform: rotate(360deg);
}

.icon-wrapper i {
    font-size: 3rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 6rem 0;
    background: var(--cream-white);
}

.testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.stars {
    color: #FFB800;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 2rem;
    font-style: italic;
}

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

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

.testimonial-author h5 {
    margin: 0;
    color: var(--charcoal);
}

.testimonial-author p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--terracotta);
    border-radius: 50%;
    top: 50%;
    opacity: 1;
    transition: var(--transition-smooth);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--forest-green);
    transform: scale(1.1);
}

.carousel-control-prev {
    left: -80px;
}

.carousel-control-next {
    right: -80px;
}

.carousel-control-prev i,
.carousel-control-next i {
    font-size: 1.2rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--charcoal) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-cta {
    background: var(--terracotta);
    color: white;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

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

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

.btn-cta:hover {
    background: white;
    color: var(--terracotta);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255,255,255,0.3);
}

/* ===== FOOTER ===== */
.footer {
  background: #141414;
  color: white;
  padding: 4rem 0 2rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="300" height="300" viewBox="0 0 300 300"%3E%3Cpath d="M150,50 Q200,80 180,150 Q160,220 100,200 Q40,180 60,100 Q80,20 150,50" fill="none" stroke="rgba(255,215,0,0.03)" stroke-width="2"/%3E%3Cpath d="M200,200 Q230,210 220,250 Q210,290 170,270 Q130,250 150,200 Q170,150 200,200" fill="none" stroke="rgba(210,180,140,0.03)" stroke-width="2"/%3E%3C/svg%3E'),
    linear-gradient(145deg, rgba(30,30,30,0.9) 0%, rgba(10,10,10,0.95) 100%);
  background-blend-mode: overlay;
  z-index: -1;
}

.footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,215,0,0.1) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.footer h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--terracotta);
}

.footer h5 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer p {
    color: #ccc;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--terracotta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--forest-green);
    transform: translateY(-3px);
}

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

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

.footer ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer ul li a:hover {
    color: var(--terracotta);
    padding-left: 5px;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #444;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .search-box {
        padding: 1rem;
    }
    
    .search-input-group {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}


/*=============================stay-details page =========================*/

 
        .details-hero {
            padding-top: 100px;
            padding-bottom: 3rem;
        }
        .property-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            grid-template-rows: 300px 300px;
            gap: 1rem;
            margin-bottom: 3rem;
            border-radius: 15px;
            overflow: hidden;
        }
        .gallery-item {
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }
        .gallery-item:first-child {
            grid-row: 1 / 3;
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
        }
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .amenity-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: var(--warm-beige);
            border-radius: 10px;
        }
        .amenity-item i {
            font-size: 1.5rem;
            color: var(--terracotta);
        }
        .booking-box {
            position: sticky;
            top: 100px;
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }
        .review-card {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
            margin-bottom: 1.5rem;
        }
    
        /*======================= about page ==============*/

        
        .about-hero {
            padding: 10rem 0 5rem;
            background: linear-gradient(135deg, var(--forest-green), var(--charcoal));
            color: white;
            text-align: center;
        }
        .story-section {
            padding: 5rem 0;
        }
        .timeline {
            position: relative;
            padding: 3rem 0;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--terracotta);
        }
        .timeline-item {
            margin-bottom: 3rem;
            position: relative;
        }
        .timeline-content {
            width: 45%;
            padding: 2rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        .timeline-item:nth-child(even) .timeline-content {
            margin-left: auto;
        }
        .team-card {
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        .team-card:hover {
            transform: translateY(-10px);
        }
        .team-card img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin-bottom: 1rem;
        }
 

        /*======================== contact page =======================*/
        
        .contact-hero {
            padding: 10rem 0 5rem;
            background: linear-gradient(135deg, var(--forest-green), var(--charcoal));
            color: white;
            text-align: center;
        }
        .contact-card {
            background: white;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            height: 100%;
        }
        .form-floating label {
            color: #888;
        }
        .form-floating input:focus,
        .form-floating textarea:focus {
            border-color: var(--terracotta);
            box-shadow: 0 0 0 0.2rem rgba(197,112,93,0.25);
        }
        .faq-item {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 1rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        .faq-item:hover {
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        .live-chat-btn {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 60px;
            height: 60px;
            background: var(--terracotta);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 5px 20px rgba(197,112,93,0.4);
            cursor: pointer;
            animation: pulse 2s infinite;
            z-index: 1000;
        }
        @keyframes pulse {
            0%, 100% { box-shadow: 0 5px 20px rgba(197,112,93,0.4); }
            50% { box-shadow: 0 5px 30px rgba(197,112,93,0.7); }
        }
    