/* ========== TOP DESTINATIONS SECTION - RECTANGLE CARDS ========== */

.destinations-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff, var(--soft-bg));
    position: relative;
    overflow: hidden;
    max-width: 1300px;
    margin:auto;
}

.destinations-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(42, 109, 244, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBg 15s ease-in-out infinite;
}

.destinations-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(42, 109, 244, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBg 20s ease-in-out infinite reverse;
}

@keyframes floatBg {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, 20px) scale(1.1); }
}

/* Grid - 3 cards per row */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 29px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

/* Destination Card - Rectangle Shape */
.destination-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 250px; /* Rectangle height */
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(84, 84, 85, 0.3);
}

.card-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.destination-card:hover .card-image img {
    transform: scale(1.1);
}

/* Name Overlay - Always visible at bottom */
.card-name-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.8), 
        transparent);
    color: white;
    z-index: 2;
    transition: all 0.3s ease;
}

.card-name-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
}

.card-name-overlay .nickname {
    font-family: 'Dancing Script', cursive;
    font-size: 16px;
    color: var(--primary-blue);
    font-weight: 500;
}

/* Details Overlay - Hidden by default, shows on hover */
.card-details-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, 
        rgba(37, 39, 45, 0.95), 
        rgba(45, 51, 58, 0.98)); */
    display: flex;
        backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 3;
}

.destination-card:hover .card-details-overlay {
    opacity: 1;
    visibility: visible;
}

/* Card Content inside details */
.card-content {
    color: white;
    text-align: center;
    padding: 20px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.2s;
    max-width: 90%;
}

.destination-card:hover .card-content {
    transform: translateY(0);
    opacity: 1;
}

.card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
}

.card-content .nickname {
    font-family: 'Dancing Script', cursive;
    font-size: 18px;
    color: #e99d47;
    margin-bottom: 15px;
    font-weight: 500;
}

.card-content .description {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Explore Button */
.card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: black;
    color: var(--primary-blue);
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.card-btn:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    color: white;
    gap: 12px;
    transform: scale(1.05);
}

.card-btn i {
    transition: transform 0.3s ease;
}

.card-btn:hover i {
    transform: translateX(5px);
}

/* Animation for cards */
.destination-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .destinations-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .destination-card {
        height: 220px;
    }
}

@media (max-width: 992px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .destination-card {
        height: 200px;
    }
    
    .card-name-overlay h3 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .destinations-section {
        padding: 60px 0;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .destination-card {
        height: 190px;
    }
    
    .card-name-overlay h3 {
        font-size: 20px;
    }
    
    .card-name-overlay .nickname {
        font-size: 14px;
    }
    
    .card-content h3 {
        font-size: 22px;
    }
    
    .card-content .description {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .destinations-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .destination-card {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .destination-card {
        height: 200px;
    }
    
    .card-name-overlay h3 {
        font-size: 20px;
    }
    
    .card-content h3 {
        font-size: 22px;
    }
    
    .card-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
}

/* Border effect on hover */
.destination-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 4;
}

.destination-card:hover::after {
    border-color: var(--primary-blue);
    transform: scale(0.98);
}









/* ========== WHY CHOOSE US SECTION ========== */
.why-us-section {
    padding: 80px 0;
    background: white;
    position: relative;
    overflow: hidden;
   
}

.why-us-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

/* Card Styles */
.why-us-card {
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(195, 79, 7, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(195, 79, 7, 0.05);
}

.why-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #c34f07, #E9742B);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.why-us-card:hover::before {
    transform: translateX(0);
}

.why-us-card:hover {
    transform: translateY(-10px);
    /* box-shadow: 0 25px 50px rgba(195, 79, 7, 0.2); */
}

/* Card Icon */
.why-us-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c34f07, #E9742B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
    transition: all 0.4s ease;
}

.why-us-card:hover .card-icon {
    transform: rotateY(180deg) scale(1.1);
    box-shadow: 0 10px 20px rgba(195, 79, 7, 0.3);
}

/* Card Title */
.why-us-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

/* Card Description */
.why-us-card .card-description {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Features List */
.why-us-card .card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.why-us-card .card-features li {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.why-us-card .card-features li i {
    color: #c34f07;
    font-size: 16px;
    flex-shrink: 0;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #fff5f0, #fff);
    padding: 12px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.badge-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(195, 79, 7, 0.15);
}

.badge-item i {
    color: #c34f07;
    font-size: 18px;
}

.badge-item span {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

/* Animation */
.why-us-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.section-header {
    text-align: center;  /* 🔥 Center align */
    max-width: 800px;
    margin: 0 auto 50px;  /* 🔥 Auto margins se center */
    padding: 0 20px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #E9742B, #c34f07);
    color: white;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(42, 109, 244, 0.2);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-title span {
    color: #eb9618;
    position: relative;
     font-family: 'Dancing Script', cursive;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    /* background: rgba(42, 109, 244, 0.2); */
    z-index: -1;
    border-radius: 4px;
}

.section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive */


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .why-us-grid {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .why-us-card .card-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .why-us-section {
        padding: 60px 0;
    }
     .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .trust-badges {
        gap: 20px;
    }
    
    .badge-item {
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .why-us-card {
        padding: 25px 20px;
    }
    .section-title {
        font-size: 28px;
    }
    
    .why-us-card .card-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .why-us-card h3 {
        font-size: 20px;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .badge-item {
        width: 100%;
        justify-content: center;
    }
}
/* ========== BLOGS SECTION WITH INFINITE SCROLL ========== */
.blogs-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--soft-bg), #fff);
    position: relative;
    overflow: hidden;
}

.blogs-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Infinite Scroll Container */
.blogs-scroll-container {
    width: 100%;
    overflow: hidden;
    margin: 50px 0 30px;
    padding: 20px 0;
    position: relative;
}

/* Gradient overlays for scroll effect */
.blogs-scroll-container::before,
.blogs-scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.blogs-scroll-container::before {
    left: 0;
    background: linear-gradient(to right, var(--soft-bg), transparent);
}

.blogs-scroll-container::after {
    right: 0;
    background: linear-gradient(to left, var(--soft-bg), transparent);
}

/* Blogs Track - Infinite Scroll */
.blogs-track {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: scrollBlogs 35s linear infinite;
    padding: 10px 0;
}

/* Pause animation on hover */
.blogs-track:hover {
    animation-play-state: paused;
}

@keyframes scrollBlogs {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===== ATTRACTIVE BLOG CARD STYLES ===== */
.blog-card {
    width: 320px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 15px 35px rgba(195, 79, 7, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

/* Gradient border on hover */
.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #EAD7B7, #E9742B, #c34f07);
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover::before {
    opacity: 1;
}

@keyframes gradientMove {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.blog-card:hover {
    transform: translateY(-15px) scale(1.02);
    /* box-shadow: 0 30px 60px rgba(195, 79, 7, 0.25); */
}

/* Blog Image with overlay */
.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(195, 79, 7, 0.2) 0%, 
        transparent 30%,
        transparent 70%,
        rgba(195, 79, 7, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.blog-card:hover .blog-image::after {
    opacity: 1;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-image img {
    transform: scale(1.15) rotate(1deg);
}

/* Blog Category - Enhanced */
.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #E9742B, #c34f07);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(195, 79, 7, 0.3);
    text-transform: uppercase;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Blog Content */
.blog-content {
    padding: 22px 20px;
    position: relative;
    background: white;
}

.blog-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: all 0.3s ease;
    position: relative;
}

.blog-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #c34f07, #E9742B);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.blog-card:hover .blog-content h3::after {
    width: 60px;
}

.blog-card:hover .blog-content h3 {
    color: #c34f07;
}

/* Blog Meta - Enhanced */
.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #666;
    padding-top: 10px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f8f9fa;
    padding: 4px 10px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-meta span {
    background: #fff5f0;
}

.blog-meta i {
    color: #c34f07;
    font-size: 12px;
}

/* Blog Excerpt - Enhanced */
.blog-excerpt {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
}

/* Read More Button - Enhanced */
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #c34f07;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
}

.blog-read-more::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #c34f07, #E9742B);
    transition: width 0.3s ease;
}

.blog-read-more:hover::before {
    width: 100%;
}

.blog-read-more i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.blog-read-more:hover {
    gap: 12px;
}

.blog-read-more:hover i {
    transform: translateX(5px) rotate(0deg);
}

/* Blogs CTA Button */
.blogs-cta {
    text-align: center;
    margin-top: 40px;
}

.blogs-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #E9742B, #c34f07);
    color: white;
    text-decoration: none;
    padding: 15px 45px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(195, 79, 7, 0.3);
    position: relative;
    overflow: hidden;
}

.blogs-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.blogs-btn:hover::before {
    left: 100%;
}

.blogs-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(195, 79, 7, 0.4);
    gap: 15px;
}

.blogs-btn i {
    transition: transform 0.3s ease;
}

.blogs-btn:hover i {
    transform: translateX(5px);
}

/* Shine effect on card */
.blog-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: rotate(30deg);
    transition: transform 0.8s ease;
    pointer-events: none;
    z-index: 2;
}

.blog-card:hover::after {
    transform: rotate(30deg) translate(50%, 50%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .blogs-section {
        padding: 60px 0;
    }
    
    .blog-card {
        width: 280px;
    }
    
    .blog-image {
        height: 180px;
    }
    
    .blog-content h3 {
        font-size: 18px;
    }
    
    .blogs-scroll-container::before,
    .blogs-scroll-container::after {
        width: 50px;
    }
    
    .blog-meta {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .blog-card {
        width: 260px;
    }
    
    .blog-image {
        height: 160px;
    }
    
    .blog-content {
        padding: 18px 15px;
    }
    
    .blog-content h3 {
        font-size: 16px;
    }
    
    .blog-excerpt {
        font-size: 13px;
    }
    
    .blog-meta {
        gap: 10px;
    }
    
    .blog-meta span {
        padding: 3px 8px;
        font-size: 11px;
    }
    
    .blogs-btn {
        padding: 12px 35px;
        font-size: 14px;
    }
}