/*
 * style.css - Custom Styles for Daksh Tours and Travels
 * This file contains custom overrides and additions on top of main.css
 */

/* ===========================
   Font Display Swap Overrides
   (Prevents invisible text during font loading)
=========================== */
@font-face {
    font-family: 'Font Awesome 5 Brands';
    font-display: swap;
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/webfonts/fa-brands-400.woff2') format('woff2');
}
@font-face {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-display: swap;
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/webfonts/fa-solid-900.woff2') format('woff2');
}
@font-face {
    font-family: 'Line Awesome Free';
    font-weight: 900;
    font-display: swap;
    src: url('https://maxst.icons8.com/vue-static/landings/line-awesome/line-awesome/1.3.0/fonts/la-solid-900.woff2') format('woff2');
}

/* ===========================
   Page Hero / Breadcrumb
=========================== */
.page-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img/slider-bg.webp') center/cover no-repeat;
    padding: 100px 0 60px;
    text-align: center;
    color: #fff;
}
.page-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}
.page-hero .breadcrumb {
    justify-content: center;
    background: transparent;
    padding: 0;
}
.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
}
.page-hero .breadcrumb-item.active { color: var(--color-primary, #f5a623); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* ===========================
   Service & Tour Cards
=========================== */
.service-grid .service-item,
.tour-grid .tour-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    background: #fff;
}
.service-grid .service-item:hover,
.tour-grid .tour-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.service-grid .service-thumb img,
.tour-grid .tour-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.service-grid .service-content,
.tour-grid .tour-content {
    padding: 20px;
}
.service-grid .service-content h3,
.tour-grid .tour-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}
.service-grid .service-content p,
.tour-grid .tour-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
}

/* ===========================
   Blog Cards
=========================== */
.blog-grid .post-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
    background: #fff;
}
.blog-grid .post-card:hover { transform: translateY(-5px); }

/* ===========================
   Contact Page
=========================== */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}
.contact-info-item .icon {
    width: 50px;
    height: 50px;
    background: var(--color-primary, #f5a623);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 20px;
}

/* ===========================
   Tour Detail / Blog Detail
=========================== */
.detail-section { padding: 60px 0; }
.detail-section .detail-img {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}
.detail-section .detail-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.tour .detail-section .detail-img img {
    object-fit: fill;
}
.detail-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    color: #888;
    font-size: 14px;
}
.detail-meta span { display: flex; align-items: center; gap: 6px; }

/* ===========================
   Sidebar
=========================== */
.sidebar-widget {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
}
.sidebar-widget h4 {
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-primary, #f5a623);
}
.sidebar-widget ul { list-style: none; padding: 0; margin: 0; }
.sidebar-widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}
.sidebar-widget ul li a { color: #444; text-decoration: none; transition: color 0.2s; }
.sidebar-widget ul li a:hover { color: var(--color-primary, #f5a623); }


/* ===========================
   Contact Cards
=========================== */
.contact-card {
    background: #fff;
    border-radius: 10px;
    padding: 40px 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-card i {
    font-size: 36px;
    color: #ff9900;
    margin-bottom: 15px;
}

.contact-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 15px;
    color: #666;
    margin: 0;
}

.contact-card p a {
    color: #666;
    transition: color 0.2s;
}

.contact-card p a:hover {
    color: #ff9900;
}


/* ===========================
   Service Cards Equal Height
=========================== */
.service-section .row {
    display: flex;
    flex-wrap: wrap;
}

.service-section .row > [class*="col-"] {
    display: flex;
}

.service-item {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content p {
    flex: 1;
}

/* ===========================
   Why Book Tours Section
=========================== */
.why-book-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.why-book-section .section-subtitle {
    color: #ff5a00;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-book-section .section-title {
    font-size: 36px;
    font-weight: 700;
}

.why-book-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.why-book-card i {
    font-size: 50px;
    color: #ff5a00;
    margin-bottom: 15px;
}

.why-book-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.why-book-card p {
    color: #666;
    font-size: 14px;
}

/* ===========================
   Sidebar CTA Widget
=========================== */
.sidebar-cta {
    background: #1a1a2e !important;
    color: #fff;
    text-align: center;
    padding: 30px 25px;
}

.sidebar-cta h4 {
    color: #fff !important;
    border-bottom-color: #ff9900 !important;
    margin-bottom: 15px;
}

.sidebar-cta p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    margin-bottom: 20px;
}

.sidebar-cta h3 {
    margin-bottom: 20px;
}

.sidebar-cta h3 a {
    color: #ff9900;
    font-size: 26px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s;
}

.sidebar-cta h3 a:hover {
    color: #ffb340;
}

/* WhatsApp CTA Button */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 40px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.whatsapp-btn i {
    font-size: 22px;
}

.whatsapp-btn:hover {
    background: #1ebe5a;
    color: #fff;
    transform: translateY(-2px);
}

/* CTA Buttons Container */
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.cta-buttons a{
    gap: 5px;
    border-radius: 6px;
}

@media (max-width: 576px) {
    .cta-buttons {
        flex-direction: column;
    }
    .cta-buttons .default-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===========================
   Contact CTA Banner
=========================== */
#contact-cta-banner {
    background: #111;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-top: 4px solid #ff9900;
}

#contact-cta-banner .cta-row {
    display: flex;
    flex-wrap: wrap;
    min-height: 450px;
}

/* Left: Illustration */
#contact-cta-banner .cta-illustration {
    position: relative;
    overflow: hidden;
    min-height: 400px;
    background: linear-gradient(160deg, #1a1a2e 0%, #0f0f1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-illustration .road {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #222;
}

.cta-illustration .road-lines {
    position: absolute;
    bottom: 35px;
    left: 0;
    width: 100%;
    height: 4px;
    display: flex;
    justify-content: center;
    gap: 20px;
    z-index: 2;
}

.cta-illustration .road-lines span {
    width: 40px;
    height: 4px;
    background: #ff9900;
    border-radius: 2px;
    display: inline-block;
}

.cta-illustration .building {
    position: absolute;
    bottom: 80px;
    border-radius: 4px 4px 0 0;
}

.cta-illustration .building-1 { left: 20px; width: 40px; height: 90px; background: #1e1e30; }
.cta-illustration .building-2 { left: 70px; width: 30px; height: 130px; background: #1a1a28; }
.cta-illustration .building-3 { left: 110px; width: 50px; height: 70px; background: #1e1e30; }
.cta-illustration .building-4 { right: 60px; width: 35px; height: 110px; background: #1a1a28; }
.cta-illustration .building-5 { right: 20px; width: 45px; height: 80px; background: #1e1e30; }
.cta-illustration .building-6 { right: 120px; width: 28px; height: 140px; background: #18182a; }

.cta-illustration .pin {
    position: absolute;
    z-index: 3;
    animation: cta-float 3s ease-in-out infinite;
}

.cta-illustration .pin-1 {
    top: 50px;
    right: 80px;
}

.cta-illustration .pin-1 i {
    font-size: 42px;
    color: #ff9900;
    filter: drop-shadow(0 4px 12px rgba(255, 153, 0, 0.4));
}

.cta-illustration .pin-2 {
    top: 90px;
    left: 60px;
    animation-delay: 1.5s;
}

.cta-illustration .pin-2 i {
    font-size: 30px;
    color: #25d366;
    filter: drop-shadow(0 4px 10px rgba(37, 211, 102, 0.3));
}

.cta-illustration .route-svg {
    position: absolute;
    top: 60px;
    left: 80px;
    z-index: 2;
    opacity: 0.3;
}

.cta-illustration .taxi-center {
    position: relative;
    z-index: 3;
    text-align: center;
}

.cta-illustration .taxi-icon-wrap {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 153, 0, 0.12) 0%, transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: cta-glow 2.5s ease-in-out infinite;
}

.cta-illustration .taxi-icon-wrap i {
    font-size: 64px;
    color: #ff9900;
    filter: drop-shadow(0 0 20px rgba(255, 153, 0, 0.4));
}

.cta-illustration .brand-name {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.cta-illustration .brand-tagline {
    color: #ff9900;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 6px;
    text-transform: uppercase;
}

.cta-illustration .sparkle {
    position: absolute;
    animation: cta-float 4s ease-in-out infinite;
}

.cta-illustration .sparkle-1 { top: 30%; left: 20%; animation-delay: 0.5s; }
.cta-illustration .sparkle-1 i { font-size: 10px; color: rgba(255, 153, 0, 0.3); }

.cta-illustration .sparkle-2 { top: 20%; right: 30%; animation-duration: 3.5s; animation-delay: 1s; }
.cta-illustration .sparkle-2 i { font-size: 8px; color: rgba(255, 255, 255, 0.15); }

.cta-illustration .sparkle-3 { top: 45%; right: 15%; animation-duration: 4.5s; animation-delay: 2s; }
.cta-illustration .sparkle-3 i { font-size: 12px; color: rgba(255, 153, 0, 0.2); }

/* Right: CTA Side */
#contact-cta-banner .cta-right {
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 40px;
    position: relative;
}

.cta-right .deco-circle {
    position: absolute;
    border-radius: 50%;
}

.cta-right .deco-circle-1 {
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: rgba(255, 153, 0, 0.05);
}

.cta-right .deco-circle-2 {
    bottom: -40px;
    left: -40px;
    width: 150px;
    height: 150px;
    background: rgba(37, 211, 102, 0.04);
}

.cta-right .cta-inner {
    position: relative;
    z-index: 2;
    max-width: 480px;
    width: 100%;
}

.cta-right .cta-badge {
    display: inline-block;
    background: rgba(255, 153, 0, 0.1);
    border: 1px solid rgba(255, 153, 0, 0.3);
    color: #ff9900;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 30px;
    margin-bottom: 18px;
}

.cta-right .cta-headline {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 14px;
}

.cta-right .cta-headline span {
    color: #ff9900;
}

.cta-right .cta-subtext {
    font-size: 16px;
    color: #999;
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-right .cta-subtext .highlight-green { color: #25d366; }
.cta-right .cta-subtext .highlight-orange { color: #ff9900; }
.cta-right .cta-subtext .highlight-white { color: #fff; }

.cta-right .cta-buttons-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-right .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-right .cta-btn:hover {
    transform: translateY(-3px) scale(1.03);
    color: #fff;
    text-decoration: none;
}

.cta-right .cta-btn-whatsapp {
    background: #25d366;
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.35);
    animation: cta-pulse-green 2s infinite;
}

.cta-right .cta-btn-whatsapp i { font-size: 26px; }

.cta-right .cta-btn-call {
    background: #ff9900;
    box-shadow: 0 0 25px rgba(255, 153, 0, 0.3);
    animation: cta-pulse-orange 2s infinite 1s;
}

.cta-right .cta-btn-call i { font-size: 22px; }

.cta-right .cta-trust {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
}

.cta-right .cta-trust span {
    font-size: 14px;
    color: #ccc;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cta-right .cta-trust span i {
    color: #25d366;
    font-size: 15px;
}

/* Animations */
@keyframes cta-pulse-green {
    0%   { box-shadow: 0 0 25px rgba(37, 211, 102, 0.35); }
    50%  { box-shadow: 0 0 40px rgba(37, 211, 102, 0.6); }
    100% { box-shadow: 0 0 25px rgba(37, 211, 102, 0.35); }
}

@keyframes cta-pulse-orange {
    0%   { box-shadow: 0 0 25px rgba(255, 153, 0, 0.3); }
    50%  { box-shadow: 0 0 40px rgba(255, 153, 0, 0.55); }
    100% { box-shadow: 0 0 25px rgba(255, 153, 0, 0.3); }
}

@keyframes cta-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

@keyframes cta-glow {
    0%, 100% { box-shadow: 0 0 30px rgba(255, 153, 0, 0.15); }
    50%      { box-shadow: 0 0 50px rgba(255, 153, 0, 0.3); }
}

@media (max-width: 991px) {
    #contact-cta-banner .cta-illustration {
        min-height: 320px;
    }
}

@media (max-width: 576px) {
    .cta-right .cta-btn {
        font-size: 16px;
        padding: 14px 24px;
    }
    #contact-cta-banner .cta-right {
        padding: 40px 20px;
    }
}