/* Home Redesign Styles */
:root {
    --primary-color: #008746;
    /* Keeping existing primary color */
    --accent-color: #dda614;
    /* Orange accent from design */
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --radius-lg: 20px;
    --radius-md: 12px;
}

body {
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
}

/* --- Hero Section --- */
.hero-section-new {
    padding: 100xpx 0 100px;
    background: #000;
    position: relative;
    overflow: hidden;
    min-height: 800px;
    display: flex;
    align-items: center;
}

/* Full Background Slider */
.full-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-bg-accent {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Abstract background shapes could act here if needed */
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
}

/* Search Card */
.hero-search-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 450px;
}

.hero-search-card h1 {
    font-size: 29px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.hero-search-card h1 span {
    color: #ff0000;
    /* Teal color from image */
}

.search-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.search-form-group {
    margin-bottom: 15px;
}

.search-form-group.full-width {
    grid-column: span 2;
}

.search-form-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
    display: block;
}

.search-input-box {
    position: relative;
}

.search-input-box input,
.search-input-box select {
    width: 100%;
    border: 1px solid #eee !important;
    background: #fdfdfd;
    padding: 12px 15px 12px 35px !important;
    /* Space for icon */
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    transition: all 0.3s;
}

.search-input-box i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 14px;
}

.search-input-box input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 135, 70, 0.1);
    outline: none;
}

.btn-search-hero {
    width: 100%;
    padding: 15px;
    background: #ff0000;
    /* Red button */
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-search-hero:hover {
    background: #000000;
    /* Black on hover */
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Banner Text Content */
.banner-text-content {
    position: relative;
    z-index: 2;
    padding-top: 50px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-size: 49px;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.hero-title span {
    color: #fff;
    /* Keep white as per image or accent if needed */
}

.hero-subtitle {
    font-size: 17px;
    color: #f0f0f0;
    margin-bottom: 25px;
    font-weight: 500;
}

.hero-price-tag {
    margin-bottom: 30px;
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.price-main {
    font-size: 25px;
    font-weight: 700;
    color: #fff;
}

.price-old {
    font-size: 20px;
    text-decoration: line-through;
    color: #ccc;
    font-weight: 400;
}

.btn-chat-expert {
    background-color: #007bff;
    /* Blue */
    color: #fff;
    padding: 12px 35px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
    text-transform: capitalize;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-chat-expert:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    color: #fff;
}

/* Hero Image */
/* Hero Image (Removed/Updated) */
/* The slider is now absolute, so we don't need specific column styles here aside from the slider classes added above */

/* Animation removed as it's a slider now */

/* --- Section Headers --- */
.new-section-header {
    text-align: left;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.new-section-header h2 {
    font-family: 'Playfair Display', serif;
    /* Or keeping global font if not importing */
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.new-section-header h2 span {
    font-style: italic;
    font-family: 'Brush Script MT', cursive;
    /* Fallback for script */
    color: var(--primary-color);
    font-weight: 400;
}

.view-all-link {
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #ddd;
    padding: 8px 20px;
    border-radius: 50px;
    transition: all 0.3s;
}

.view-all-link:hover {
    background: var(--text-dark);
    color: #fff;
}

/* --- Holiday Deals --- */
.deals-filter-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.deal-tab {
    padding: 8px 25px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
}

.deal-tab.active,
.deal-tab:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.deal-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
}

.deal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.deal-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.deal-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.deal-card:hover .deal-img-wrapper img {
    transform: scale(1.1);
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.deal-content {
    padding: 20px;
}

.deal-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2c3e50;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Deal Card Content Updates */
.deal-icons-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.deal-icon-box {
    text-align: center;
    font-size: 11px;
    color: #555;
    flex: 1;
}

.deal-icon-box i {
    font-size: 16px;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.deal-tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.deal-tag-badge {
    background-color: #007bff;
    /* Blue */
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
}

.deal-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.deal-highlights li {
    position: relative;
    padding-left: 15px;
    font-size: 12px;
    color: #444;
    margin-bottom: 5px;
    line-height: 1.4;
}

.deal-highlights li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333;
    font-weight: bold;
}

.deal-price-new {
    display: flex;
    flex-direction: column;
}

.deal-price-new .amount {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
}

.deal-price-new small {
    font-size: 12px;
    color: #888;
}

.deal-enquire-btn-wrapp .btn-enquire {
    padding: 13px 30px;
}

.deal-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #777;
}

.deal-meta i {
    color: #aaa;
    margin-right: 5px;
}

.deal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f5f5f5;
    padding-top: 15px;
    margin-top: 15px;
}

.deal-price {
    display: flex;
    flex-direction: column;
}

.deal-price small {
    font-size: 11px;
    color: #999;
}

.deal-price span {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
}

.btn-enquire {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s;
    text-decoration: none;
}

.btn-enquire:hover {
    background: var(--text-dark);
    color: #fff;
    border-color: var(--text-dark);
}

.rating-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: #f39c12;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* --- Destinations --- */
.destinations-search-bar {
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
    background: #fff;
    border-radius: 50px;
    border: 1px solid #eee;
    padding: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
}

.destinations-search-bar input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 50px;
}

.destinations-search-bar input:focus {
    outline: none;
}

.destinations-search-bar button {
    background: #222;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 15px;
}

.masonry-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.masonry-item:hover img {
    transform: scale(1.1);
}

.item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.item-msg {
    grid-column: span 1;
    grid-row: span 1;
}

.masonry-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    color: #fff;
}

.masonry-overlay h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

/* --- Promo Banner --- */
.promo-banner {
    margin: 80px 0;
    background: url('../images/banner-bg.jpg') center/cover no-repeat;
    /* Fallback or user provided */
    background-color: #d1f2eb;
    /* Fallback color */
    border-radius: 20px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.promo-content {
    max-width: 50%;
    position: relative;
    z-index: 2;
}

.promo-content h2 {
    font-family: 'Brush Script MT', cursive;
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.promo-image {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 120%;
    width: auto;
}

/* --- Features Section (Book with Confidence) --- */
.features-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.feature-item-new {
    flex: 1;
    min-width: 220px;
    text-align: center;
    padding: 10px;
}

.feature-icon-new {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.feature-item-new:hover .feature-icon-new {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon-new i {
    font-size: 28px;
    color: #ffc107;
    /* Golden Yellow to match image */
}

.feature-item-new h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

/* --- Blogs --- */
.blog-card-new {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.blog-card-new img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
}

.blog-overlay-new {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* --- Testimonials --- */
.testimonial-card-new {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: left;
    height: 100%;
}

.stars-new {
    color: #f39c12;
    margin-bottom: 15px;
}

.user-profile-new {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.user-img-new {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .item-large {
        grid-column: span 2;
        grid-row: span 1;
        height: 300px;
    }

    .features-row {
        flex-wrap: wrap;
        gap: 30px;
    }

    .feature-item-new {
        min-width: 45%;
    }
}

@media (max-width: 768px) {
    .hero-search-card h1 {
        font-size: 32px;
    }

    .search-form-grid {
        grid-template-columns: 1fr;
    }

    .search-form-group.full-width {
        grid-column: span 1;
    }

    .deals-grid {
        grid-template-columns: 1fr;
    }

    .masonry-grid {
        grid-template-columns: 1fr;
    }

    .item-large {
        grid-column: span 1;
    }


    .feature-item-new {
        min-width: 100%;
    }
}

/* Consistency for all buttons */
.btn-enquire,
.btn-main,
.btn-primary {
    background-color: #ff0000 !important;
    color: #fff !important;
    border: none;
    transition: all 0.3s ease;
}

.btn-enquire:hover,
.btn-main:hover,
.btn-primary:hover {
    background-color: #000000 !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}