/* Custom CSS for Travello Template */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Volkhov:wght@700&display=swap');

:root {
    --text-color: #5E6282;
    --primary-dark: #181E4B;
    --accent: #DF6951;
    --yellow: #F1A501;
    --light-purple: #DFD7F9;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary-dark);
}

.font-volkhov {
    font-family: 'Volkhov', serif;
}

.text-primary-dark {
    color: var(--primary-dark) !important;
}

.text-accent {
    color: var(--accent) !important;
}

.text-muted {
    color: var(--text-color) !important;
}

.bg-primary-accent {
    background-color: var(--yellow) !important;
}

.text-primary-accent {
    color: var(--yellow) !important;
}

/* ── Layout ─────────────────────────────────────────── */
.site-wrapper {
    width: 100%;
}

.hero-bg-blob {
    position: absolute;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

.hero-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 50vw;
    height: 100vh;
    background: radial-gradient(ellipse at left, rgba(223, 105, 81, 0.4) 0%, rgba(223, 105, 81, 0) 70%);
    z-index: -2;
}

/* ── Navbar ──────────────────────────────────────────── */
.navbar-brand {
    color: var(--primary-dark) !important;
}

.navbar-nav .nav-link {
    color: #212832;
    font-weight: 500;
    font-size: 15px;
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--yellow);
}

.hover-primary:hover {
    color: var(--yellow) !important;
}

.btn-signup {
    font-weight: 500;
}

/* ── Hero Section ────────────────────────────────────── */
.hero-section {
    padding-top: 150px;
    padding-bottom: 100px;
}

.hero-subtitle {
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.hero-heading {
    line-height: 1.2;
}

.hero-decore-underline {
    bottom: 8px;
    left: -10%;
    width: 120%;
    z-index: -1;
}

.hero-text {
    font-size: 16px;
    line-height: 30px;
}

.btn-find-out {
    background-color: var(--yellow);
    border-color: var(--yellow);
    font-weight: 500;
    width: 300px;
    text-align: center;
}

.btn-find-out:hover {
    background-color: #dca00f;
    border-color: #dca00f;
    color: #fff;
}

.play-demo-text {
    font-weight: 500;
}

.hero-img {
    transform: scale(1.15) translateY(-5%);
}

/* ── Play Button ─────────────────────────────────────── */
.btn-play .play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background-color: var(--accent);
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(223, 105, 81, 0.5);
}

.btn-play:hover .play-icon {
    transform: scale(1.05);
}

.btn-warning {
    background-color: var(--yellow);
    border-color: var(--yellow);
}

.btn-warning:hover {
    background-color: #dca00f;
    border-color: #dca00f;
    color: white;
}

/* ── Shared Section Labels ───────────────────────────── */
.section-label {
    font-size: 18px;
}

.section-heading {
    font-size: 50px;
}

/* ── Services Section ────────────────────────────────── */
.transition {
    transition: all 0.3s ease;
}

.services-decore-top {
    top: 0;
    right: 5%;
    width: 150px;
    z-index: -1;
}

.active-shape-bg {
    bottom: -20px;
    left: -10px;
    width: 100px;
    height: 100px;
    background-color: #DF6951;
    border-radius: 30px 0 10px 0;
    z-index: 1;
}

.service-card {
    background: transparent;
    border: none;
    border-radius: 36px;
    position: relative;
    z-index: 2;
}

.service-card:hover, .active-card {
    background-color: #ffffff !important;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.05) !important;
}

/* ── Destination Cards ───────────────────────────────── */
.destination-card {
    width: 400px;
    height: auto;
    border-radius: 24px;
    border: none;
    overflow: hidden;
    box-shadow: 0px 1.85px 3.15px rgba(0,0,0,0.004),
                0px 8.15px 6.52px rgba(0,0,0,0.008),
                0px 20px 13px rgba(0,0,0,0.012),
                0px 38.52px 25.48px rgba(0,0,0,0.012),
                0px 64.81px 46.85px rgba(0,0,0,0.016),
                0px 100px 80px rgba(0,0,0,0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 1.85px 3.15px rgba(0,0,0,0.01),
                0px 8.15px 6.52px rgba(0,0,0,0.02),
                0px 20px 13px rgba(0,0,0,0.03),
                0px 38.52px 25.48px rgba(0,0,0,0.03),
                0px 64.81px 46.85px rgba(0,0,0,0.04),
                0px 100px 80px rgba(0,0,0,0.05);
}

.card-img-dest {
    width: 100%;
    aspect-ratio: 315 / 327;
    object-fit: cover;
    object-position: center;
}

.card-info {
    padding: 27px 20px 24px;
}

.card-label {
    font-size: 18px;
    color: var(--text-color);
}

.card-trip-row {
    margin-top: 18px;
    color: var(--text-color);
}

.card-days-text {
    font-size: 16px;
}

.dest-decore {
    top: 157px;
    right: -65px;
    z-index: 0;
    width: 97px;
}

.dest-card-last {
    z-index: 1;
}

/* ── Book a Trip Section ─────────────────────────────── */
.step-text {
    line-height: 1.8;
}

.book-glow {
    top: -15%;
    right: -5%;
    width: 350px;
    height: 350px;
    background: #59B1E6;
    filter: blur(100px);
    opacity: 0.3;
    z-index: -1;
    border-radius: 50%;
}

.book-card-wrapper {
    max-width: 370px;
}

.book-main-card {
    border-radius: 26px !important;
}

.book-card-img {
    border-radius: 24px !important;
}

.book-card-title {
    font-size: 18px;
    letter-spacing: 0.2px;
}

.book-card-date {
    font-size: 15px;
}

.book-option-btn {
    width: 40px;
    height: 40px;
}

.people-count-text {
    font-size: 15px;
}

.ongoing-card {
    bottom: 50px;
    right: -80px;
    width: 280px;
    z-index: 2;
    border-radius: 18px;
}

.ongoing-title {
    font-size: 17px;
}

.completed-text {
    font-size: 14px;
}

.completed-pct-accent {
    color: #8A79DF !important;
}

.trip-progress {
    height: 6px;
    border-radius: 10px;
    background-color: #F5F5F5;
}

.trip-progress-bar {
    width: 40%;
    background-color: #8A79DF;
    border-radius: 10px;
}

/* ── Testimonials ────────────────────────────────────── */
.testimonial-card {
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.testimonials-wrapper {
    max-width: 500px;
    padding-left: 30px;
}

.testimonial-bg {
    top: 80px;
    left: 80px;
    right: -30px;
    z-index: 1;
    border: 2px solid #F7F7F7;
    box-shadow: none;
}

.testimonial-main {
    margin-bottom: 40px;
}

.testimonial-text {
    font-size: 16px;
}

.testimonial-avatar-img {
    top: -34px;
    left: -34px;
    width: 68px;
    height: 68px;
    object-fit: cover;
}

.testimonial-arrows {
    transform: translateY(-20px);
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #E5E5E5;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pagination-dot.active {
    background-color: #39425D;
}
/* ── Subscribe Section ───────────────────────────────── */
.subscribe-send-arrow {
    top: -15px;
    right: -20px;
    width: 70px;
    z-index: 3;
}

.subscribe-card {
    background-color: #DFD7F9;
    border-radius: 129px 20px 20px 20px;
}

.subscribe-decore {
    object-fit: cover;
    width: 100%;
    z-index: 1;
}

.subscribe-heading {
    max-width: 800px;
    font-size: 33px;
    line-height: 54px !important;
}

.subscribe-form {
    max-width: 650px;
}

.subscribe-form-wrapper {
    position: relative;
    border-radius: 10px;
}

.subscribe-input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #39425D;
    z-index: 10;
}

.subscribe-input {
    padding-left: 55px;
    height: 68px;
    border-radius: 10px;
}

.subscribe-btn {
    height: 68px;
    border-radius: 10px;
    background: linear-gradient(180deg, #FF946D 0%, #FF7D68 100%);
    border: none;
    padding: 0 40px;
    font-weight: 600;
}

/* ── Footer ──────────────────────────────────────────── */
.footer-glow {
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-color: var(--light-purple);
    filter: blur(80px);
    opacity: 0.5;
    z-index: -1;
    border-radius: 50%;
}

.footer-desc {
    font-size: 13px;
    line-height: 1.8;
}

.footer-discover {
    font-size: 20px;
    letter-spacing: 0.1px;
}

.footer-copyright {
    font-size: 14px;
}

.social-gradient {
    width: 55px;
    height: 55px;
    background: conic-gradient(from 180deg at 50% 50%, #B8D2F1 0deg, #F289AA 60deg, #C68BF0 106.09deg, #D164DA 153.75deg, #C963E8 221.25deg, #BFC2E8 258.75deg, #FFC999 288.75deg, #D0D8C9 315deg, #BAD0F1 334.13deg, #CED8CB 358.97deg, rgba(255,255,255,0) 360deg);
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.social-icon-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--primary-dark);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-decoration: none;
}

.social-icon-btn:hover {
    transform: translateY(-3px);
}
