/* 
 * QUIKTRIPS Custom Styling Sheet - Light Theme Version
 * Derived from the Logo Palette: Sunset Orange, Golden Yellow, Mountain Navy & Ocean Waves Blue
 */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,700;0,800;1,600&display=swap');

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-card: #ffffff;
    --color-orange: #ff4e00;
    --color-red: #e63946;
    --color-gold: #ffa500;
    --color-teal: #0077b6;
    --text-dark: #0f172a;
    --text-body: #334155;
    --text-muted: #64748b;
    --text-light: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --gradient-sunset: linear-gradient(135deg, #ff4e00 0%, #ff8c00 100%);
    --gradient-primary: linear-gradient(135deg, #ff4e00 0%, #e63946 100%);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --card-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    --card-shadow-hover: 0 15px 35px rgba(255, 78, 0, 0.12);
}

/* Base Styles */
html, body {
    background-color: var(--bg-primary);
    color: var(--text-body);
    font-family: var(--font-body);
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    scroll-behavior: smooth;
}
body {
    padding-top: 84px;
}

.site-wrapper {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
}

p {
    font-weight: 400;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
    background: var(--color-orange);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

/* Gradient Text */
.text-gradient-sunset {
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-gradient-primary {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Premium Buttons */
.btn-sunset {
    background: var(--gradient-sunset);
    color: var(--text-light);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(255, 78, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-sunset:hover {
    background: linear-gradient(135deg, #ff8c00 0%, #ff4e00 100%);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 78, 0, 0.5);
}

.btn-outline-sunset {
    background: transparent;
    color: var(--color-orange);
    border: 2px solid var(--color-orange);
    padding: 0.7rem 1.8rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-smooth);
}
.btn-outline-sunset:hover {
    background: var(--gradient-sunset);
    border-color: transparent;
    color: var(--text-light);
    transform: translateY(-2px);
}

/* Navigation Header - Separate, Solid, and Clean */
.navbar-quiktrip {
    padding: 0.75rem 0;
    transition: var(--transition-smooth);
    background: #ffffff !important;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
}
.navbar-quiktrip.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 25px rgba(15, 23, 42, 0.06);
    border-bottom: 1px solid rgba(255, 78, 0, 0.1);
}
.navbar-brand img {
    height: 70px;
    width: 70px;
    object-fit: contain;
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    transition: var(--transition-smooth);
}
.navbar-quiktrip.scrolled .navbar-brand img {
    height: 52px;
    width: 52px;
}
.nav-link {
    color: var(--text-dark) !important; /* Always dark text */
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0 0.5rem;
    position: relative;
    padding: 0.5rem 0 !important;
    transition: var(--transition-smooth);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-sunset);
    transition: var(--transition-smooth);
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}
.nav-link:hover {
    color: var(--color-orange) !important;
}

/* Custom Navbar Toggler styling */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: 8px;
    background: rgba(255, 78, 0, 0.08) !important;
    border: 1px solid rgba(255, 78, 0, 0.15) !important;
    transition: var(--transition-smooth);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(15, 23, 42, 0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important; /* Always dark icon */
}
}

/* Change toggler icon to a cross (X) when the drawer menu is open */
.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(15, 23, 42, 0.9)' stroke-width='2.5' stroke-linecap='round' d='M6 6l18 18M6 24L24 6'/%3E%3C/svg%3E") !important;
}
.navbar-toggler:not(.collapsed) {
    background: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
}

/* Full Hero Banner Multi Slider - NO Text mode */
.hero-banner-section {
    position: relative;
    height: 75vh;
    background-size: cover;
    background-position: center top;
    overflow: hidden;
}

/* Slider Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(15, 23, 42, 0.4);
    border-radius: 50%;
    background-size: 40%;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: var(--color-orange);
    border-color: transparent;
    box-shadow: 0 0 15px rgba(255, 78, 0, 0.4);
}

/* Section Styling */
.section-padding {
    padding: 3rem 0;
}
.section-title-wrapper {
    margin-bottom: 4rem;
}
.section-tag {
    color: var(--color-orange);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0.5rem;
}
.section-title {
    font-size: 2.6rem;
    font-weight: 800;
}
.section-title span {
    font-style: italic;
    font-weight: 500;
}

/* Package Grid Cards - Light Theme */
.package-card {
    background: var(--bg-card);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    box-shadow: var(--card-shadow);
}
.package-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}
.package-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.package-card:hover .package-img {
    transform: scale(1.1);
}
.package-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-sunset);
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 2;
}
.package-content {
    padding: 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.package-card-title {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}
.package-card:hover .package-card-title {
    color: var(--color-orange);
}
.package-card-text {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}
.package-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    padding-top: 1rem;
    margin-top: auto;
}
.package-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 78, 0, 0.15);
    box-shadow: var(--card-shadow-hover);
}

/* Card inner carousel styles for multi-image slide */
.package-card .carousel {
    position: relative;
    width: 100%;
    height: 100%;
}
.package-card .carousel-inner {
    height: 100%;
}
.package-card .carousel-item {
    height: 100%;
    aspect-ratio: 16/10;
}
.package-card .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.package-card .carousel-control-prev,
.package-card .carousel-control-next {
    width: 28px;
    height: 28px;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 8px;
    opacity: 0;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.package-card:hover .carousel-control-prev,
.package-card:hover .carousel-control-next {
    opacity: 1;
}
.package-card .carousel-control-prev-icon,
.package-card .carousel-control-next-icon {
    width: 10px;
    height: 10px;
    background-size: 100%;
}
.package-card .carousel-control-prev:hover,
.package-card .carousel-control-next:hover {
    background: var(--gradient-sunset);
    border-color: transparent;
}

/* Why Choose Us Section - Light Theme Redesigned */
.feature-bar-card {
    background: var(--bg-card);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 12px;
    padding: 1.1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    height: 100%;
}
.feature-bar-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 78, 0, 0.2);
    box-shadow: var(--card-shadow-hover);
}
.feature-bar-card .check-icon {
    background: var(--gradient-sunset);
    color: var(--text-light);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(255, 78, 0, 0.25);
}
.feature-bar-card .feature-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    font-family: var(--font-body);
}

/* Parallax Call to Action */
.cta-parallax-section {
    position: relative;
    background-image: url('../images/banner_holidays.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 7rem 0;
}
.cta-parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(255, 78, 0, 0.25) 100%);
}
.cta-content {
    position: relative;
    z-index: 2;
}

/* About Us Image Styling - Uniform and Responsive */
.about-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5; /* Crisp portrait ratio */
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}
.about-img-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 78, 0, 0.12);
}
.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.about-img-wrapper:hover .about-img {
    transform: scale(1.08);
}

/* Contact Info Layout */
.contact-info-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(15, 23, 42, 0.05);
    box-shadow: var(--card-shadow);
}
.contact-info-card .social-icon {
    background: rgba(15, 23, 42, 0.05);
    color: var(--text-dark);
    border: 1px solid rgba(15, 23, 42, 0.1);
}
.contact-info-card .social-icon:hover {
    background: var(--gradient-sunset);
    color: var(--text-light);
    border-color: transparent;
}
.contact-detail-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}
.contact-icon-box {
    background: rgba(255, 78, 0, 0.08);
    color: var(--color-orange);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 1px solid rgba(255, 78, 0, 0.15);
}
.contact-text-box h5 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    font-weight: 600;
    color: var(--text-dark);
}
.contact-text-box p {
    color: var(--text-body);
    font-size: 0.95rem;
    margin: 0;
}

/* Inquiry Form Styling */
.inquiry-form-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(15, 23, 42, 0.05);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
}
.form-label {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.form-control, .form-select {
    background-color: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    color: var(--text-dark);
    padding: 0.75rem 1rem;
    transition: var(--transition-smooth);
}
.form-control:focus, .form-select:focus {
    background-color: #ffffff;
    border-color: var(--color-orange);
    box-shadow: 0 0 10px rgba(255, 78, 0, 0.15);
    color: var(--text-dark);
}

/* Footer Section - Premium Dark Contrast */
.footer-section {
    background-color: #0f172a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0 1rem;
}
.footer-logo img {
    height: 52px;
    margin-bottom: 1.5rem;
}
.footer-text {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.7;
}
.footer-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--color-orange);
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 0.8rem;
}
.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.92rem;
    transition: var(--transition-smooth);
}
.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    margin-right: 0.5rem;
    transition: var(--transition-smooth);
    text-decoration: none;
}
.social-icon:hover {
    background: var(--gradient-sunset);
    color: #ffffff;
    transform: translateY(-3px);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
    margin-top: 1rem;
}
.footer-bottom p {
    font-size: 0.85rem;
    color: #94a3b8;
    margin: 0;
}

/* Gallery Section Styles */
.gallery-card {
    display: block;
    text-decoration: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    border: 1px solid rgba(15, 23, 42, 0.05);
}
.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(255, 78, 0, 0.15);
}
.gallery-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1; /* Square gallery looks super clean */
}
.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(255, 78, 0, 0.4) 100%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    transition: var(--transition-smooth);
    backdrop-filter: blur(3px);
}
.gallery-card:hover .gallery-img {
    transform: scale(1.1);
}
.gallery-card:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay-content {
    width: 100%;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}
.gallery-card:hover .gallery-overlay-content {
    transform: translateY(0);
}
.gallery-category {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 0.25rem;
}
.gallery-item-title {
    font-size: 1.05rem;
    color: var(--text-light);
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}
.gallery-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    backdrop-filter: blur(5px);
    transition: var(--transition-smooth);
}
.gallery-card:hover .gallery-icon {
    background: var(--gradient-sunset);
    box-shadow: 0 0 10px rgba(255, 78, 0, 0.5);
}

/* Indian Flag Icon (CSS fallback for Windows flag emoji rendering issues) */
.indian-flag-icon {
    display: inline-block;
    width: 22px;
    height: 15px;
    background: linear-gradient(to bottom, #FF9933 33.3%, #ffffff 33.3%, #ffffff 66.6%, #138808 66.6%);
    border: 1px solid rgba(15, 23, 42, 0.15);
    border-radius: 2px;
    vertical-align: middle;
    position: relative;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.indian-flag-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5px;
    height: 5px;
    border: 1px solid #000080;
    border-radius: 50%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -300px; /* Hidden offscreen on the right */
        width: 280px;
        height: 100vh;
        background: #ffffff !important;
        padding: 5.5rem 1.5rem 2rem;
        box-shadow: -5px 0 25px rgba(15, 23, 42, 0.15);
        transition: var(--transition-smooth);
        display: flex !important;
        flex-direction: column;
        z-index: 1020;
        border: none;
        border-radius: 0;
        margin-top: 0;
    }
    .navbar-collapse.show {
        right: 0; /* Slide in */
    }
    .navbar-quiktrip .nav-link {
        color: var(--text-dark) !important; /* Always dark text inside mobile menu */
        width: 100%;
        text-align: left;
        padding: 0.8rem 0 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    .navbar-nav {
        width: 100%;
        align-items: flex-start !important;
    }
    .navbar-toggler {
        z-index: 1030; /* Keep toggler button on top of the drawer to close it */
    }
    .hero-banner-section {
        height: 60vh;
    }
    .section-title {
        font-size: 2.2rem;
    }
}
@media (max-width: 575.98px) {
    .hero-banner-section {
        height: 55vh;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .section-padding {
        padding: 4rem 0;
    }
    .inquiry-form-card, .contact-info-card {
        padding: 1.5rem;
    }
}
