/* modern.css - Premium UI Overhaul for Daksh Tour And Travels */

:root {
    --primary-gold: #f76c2f;
    /* Sunset Orange */
    --primary-dark: #212121;
    /* Dark Grey */
    --accent-gold: #ff8c52;
    /* Lighter Orange */
    --text-main: #333333;
    --text-muted: #666666;
    --bg-light: #f8f9fa;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --border-radius-lg: 16px;
    --border-radius-md: 12px;
}

/* Global Typography */
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
.trv-head-title {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
}

/* Modern Card Styling */
.trv-popular-tour-st3,
.trv-price-bx1,
.trv-blog-st2 {
    border: none !important;
    border-radius: var(--border-radius-lg) !important;
    box-shadow: var(--card-shadow) !important;
    transition: var(--transition-smooth) !important;
    background: #fff !important;
    overflow: hidden;
}

.trv-popular-tour-st3:hover,
.trv-price-bx1:hover,
.trv-blog-st2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}

/* Glassmorphism Utilities */
.glass-header {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}

.glass-card {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-md);
}

/* Button Enhancements */
.site-button {
    border-radius: 50px !important;
    font-weight: 600 !important;
    padding: 12px 30px !important;
    transition: var(--transition-smooth) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.site-button.outline {
    border: 2px solid var(--primary-gold) !important;
}

.site-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(247, 108, 47, 0.3);
    /* Updated to match Sunset Orange */
}

/* Section Spacing & Transitions */
.p-t120 {
    padding-top: 140px !important;
}

.p-b90 {
    padding-bottom: 110px !important;
}

/* Reveal Transitions */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-smooth);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Header Refinement */
.main-bar-wraper {
    transition: var(--transition-smooth);
}

.is-fixed .main-bar-wraper {
    background: #fff !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Testimonial Enhancements */
.testimonial-slider {
    overflow: hidden;
    margin-top: 40px;
}

.testimonial-track {
    display: flex;
    gap: 25px;
    animation: slide 30s infinite linear;
}

.testimonial-card {
    min-width: 350px;
    background: #fff;
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--card-shadow);
    position: relative;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.testimonial-card::before {
    content: "“";
    font-family: 'Outfit', sans-serif;
    font-size: 80px;
    color: var(--primary-gold);
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.1;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-gold);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Section Header Premium Look */
.trv-head-title-wrap {
    margin-bottom: 60px;
}

.trv-head-title {
    font-size: 3rem !important;
    letter-spacing: -1px;
}

.site-text-yellow {
    color: var(--primary-gold) !important;
    position: relative;
}

.trv-head-title-image img {
    max-width: 150px;
    margin-top: 15px;
}

/* Blog Section Premium Look */
.trv-post-media img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.trv-post-info {
    padding: 25px !important;
}

.post-title a {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--primary-dark);
}

/* Footer Modernization */
footer.site-footer {
    background: #0f0f0f !important;
    color: #e0e0e0;
}

footer .widget_address li .trv-icon {
    background: var(--primary-gold);
    color: #000;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section Refinements */
.trv-hp4-bnr-wrap {
    position: relative;
    overflow: hidden;
}

.trv_d-slider-media img {
    transform: scale(1);
    transition: transform 10s linear;
}

.swiper-slide-active .trv_d-slider-media img {
    transform: scale(1.1);
}