/* =============================================
   Tour With Wasi - Custom Styles
   Matches original site: Bootstrap 3 + custom overrides
   Accent color: #e43c5c
   ============================================= */

/* ===== BASE OVERRIDES ===== */
body {
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    font-size: 18px;
    color: #333;
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

a { transition: color 0.3s; }
a:hover, a:focus { text-decoration: none; }
img { max-width: 100%; height: auto; }
section { padding: 70px 0; }

/* ===== NAVBAR (Bootstrap 3 navbar-default override) ===== */
.navbar-default {
    background-color: #fff;
    border: none;
    border-radius: 0;
    margin-bottom: 0;
    padding: 0 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}
.navbar-default.scrolled {
    padding: 4px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.navbar-brand {
    padding: 15px 15px;
    height: auto;
}
.navbar-brand img {
    width: 240px;
    height: auto;
    display: inline-block;
}
.navbar-brand:hover .brand-accent,
.navbar-brand:focus .brand-accent {
    color: #e43c5c;
}
.navbar-default .navbar-nav > li {
    padding-top: 20px;

}
.navbar-default .navbar-nav > li > a {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #555;
    letter-spacing: 0.5px;
    padding: 15px 18px;
    transition: color 0.3s;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > li.active > a {
    color: #e43c5c;
    background: transparent;
}
.navbar-default .navbar-toggle {
    border-color: #ddd;
}
.navbar-default .navbar-toggle .icon-bar {
    background-color: #e43c5c;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background-color: #f8f8f8;
}

/* Brand text style (fallback if no logo image) */
.brand-text {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.brand-text .brand-accent {
    color: #e43c5c;
}
.brand-text img.brand-icon {
    width: 40px;
    height: auto;
}

/* ===== BANNER / HERO CAROUSEL ===== */
#banner {
    position: relative;
    overflow: hidden;
    margin-top: 50px; /* navbar height */
}
.banner-carousel {
    position: relative;
    width: 100%;
    height: 600px;
}
.banner-carousel .slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: none;
}
.banner-carousel .slide.active {
    display: block;
}
.banner-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.65));
    padding: 80px 40px 40px;
    color: #fff;
    z-index: 10;
}
.banner-overlay h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}
.banner-overlay p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 20px;
}
.btn-cta {
    display: inline-block;
    background: #e43c5c;
    color: #fff;
    padding: 12px 35px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s;
}
.btn-cta:hover, .btn-cta:focus {
    background: #c8324e;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(228,60,92,0.4);
}

/* ===== SECTION TITLES ===== */
.section-title {
    text-align: center;
    color: #e43c5c;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}
.section-subtitle {
    text-align: center;
    color: #888;
    font-size: 16px;
    margin-bottom: 45px;
}
.section-title-bar {
    display: block;
    width: 60px;
    height: 3px;
    background: #e43c5c;
    margin: 12px auto 0;
}

/* ===== ABOUT SECTION ===== */
#about {
    background: #f9f9f9;
}
.about-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.about-img img {
    width: 100%;
    height: 585px;
    object-fit: cover;
}
.about-text {
    padding-left: 20px;
}
.about-text p {
    font-size: 17px;
    color: #555;
    margin-bottom: 15px;
}
.about-text strong {
    color: #333;
}
.about-stats {
    margin-top: 30px;
}
.stat-box {
    text-align: center;
    padding: 18px 10px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    margin-bottom: 15px;
}
.stat-box .stat-number {
    font-size: 30px;
    font-weight: 700;
    color: #e43c5c;
    display: block;
}
.stat-box .stat-label {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== TOURS / SERVICES ===== */
#tours {
    background: #fff;
}
.tour-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    background: #fff;
    margin-bottom: 30px;
}
.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.tour-card .tour-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
.tour-card .tour-body {
    padding: 20px;
}
.tour-card .tour-body h3 {
    color: #e43c5c;
    font-size: 20px;
    margin: 0 0 8px 0;
}
.tour-card .tour-body h3 a {
    color: #e43c5c;
}
.tour-card .tour-body h3 a:hover {
    color: #c8324e;
}
.tour-card .tour-body p {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.5;
}
.tour-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 5px;
}
.tour-meta span {
    font-size: 12px;
    color: #888;
}
.tour-meta span i {
    color: #e43c5c;
    margin-right: 4px;
}
.tour-card-footer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tour-price {
    font-size: 22px;
    font-weight: 700;
    color: #e43c5c;
}
.tour-price small {
    font-size: 13px;
    color: #999;
    font-weight: 400;
}
.btn-book {
    display: inline-block;
    background: #e43c5c;
    color: #fff;
    padding: 9px 24px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-book:hover, .btn-book:focus {
    background: #c8324e;
    color: #fff;
    transform: scale(1.05);
}
.tour-badge {
    display: inline-block;
    background: #e43c5c;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 5;
}
.tour-card {
    position: relative;
}

/* ===== TOUR DETAIL PAGE ===== */
.tour-detail-banner {
    height: 450px;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 50px;
}
.tour-detail-banner .overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 60px 0 30px;
    color: #fff;
}
.tour-detail-banner .overlay h1 {
    font-size: 38px;
    font-weight: 700;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
}
.tour-detail-section {
    padding: 50px 0;
}
.tour-info-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    padding: 30px;
    margin-bottom: 30px;
}
.tour-info-card h3 {
    color: #e43c5c;
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}
.tour-info-card ul {
    list-style: none;
    padding: 0;
}
.tour-info-card ul li {
    padding: 8px 0;
    font-size: 16px;
    color: #555;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.tour-info-card ul li:last-child {
    border-bottom: none;
}
.tour-info-card ul li i {
    color: #e43c5c;
    margin-top: 3px;
    min-width: 18px;
}
.tour-info-card ul li.included i { color: #4CAF50; }
.tour-info-card ul li.excluded i { color: #e43c5c; }
.tour-quick-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}
.quick-info-item {
    flex: 1;
    min-width: 150px;
    background: #f9f9f9;
    padding: 18px 20px;
    border-radius: 8px;
    text-align: center;
    border-left: 3px solid #e43c5c;
}
.quick-info-item i {
    font-size: 22px;
    color: #e43c5c;
    display: block;
    margin-bottom: 8px;
}
.quick-info-item .label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    display: block;
}
.quick-info-item .value {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

/* Sidebar booking card */
.booking-sidebar {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    padding: 30px;
    position: sticky;
    top: 80px;
}
.booking-sidebar h3 {
    color: #e43c5c;
    margin-bottom: 5px;
}
.booking-sidebar .price-display {
    font-size: 32px;
    font-weight: 700;
    color: #e43c5c;
    margin-bottom: 20px;
}
.booking-sidebar .price-display small {
    font-size: 14px;
    color: #999;
    font-weight: 400;
}

/* ===== GALLERY (masonry) ===== */
#gallery {
    background: #f9f9f9;
}
.gallery-masonry {
    -moz-column-count: 3;
    -webkit-column-count: 3;
    column-count: 3;
    -moz-column-gap: 15px;
    -webkit-column-gap: 15px;
    column-gap: 15px;
}
.gallery-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    break-inside: avoid;
}
.gallery-item:hover {
    transform: scale(1.02);
}
.gallery-item img {
    width: 100%;
    display: block;
    /* content-visibility: auto; */
}

/* ===== REVIEWS ===== */
#reviews {
    background: #fff;
}
.review-card {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #e43c5c;
    margin-bottom: 20px;
    transition: transform 0.3s;
}
.review-card:hover {
    transform: translateY(-3px);
}
.review-stars {
    color: #f5a623;
    margin-bottom: 10px;
    font-size: 15px;
}
.review-text {
    font-size: 15px;
    color: #555;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}
.review-author {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}
.review-source {
    font-size: 12px;
    color: #999;
}

/* ===== CONTACT ===== */
#contact {
    background: #2c2c2c;
    color: #fff;
}
#contact .section-title {
    color: #fff;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}
.contact-info-item i {
    font-size: 20px;
    color: #e43c5c;
    margin-top: 4px;
    min-width: 20px;
}
.contact-info-item h4 {
    font-size: 16px;
    margin: 0 0 4px 0;
    color: #fff;
}
.contact-info-item p {
    font-size: 14px;
    color: #aaa;
    margin: 0;
}
.contact-info-item a {
    color: #aaa;
    transition: color 0.3s;
}
.contact-info-item a:hover {
    color: #e43c5c;
}
.social-links {
    margin-top: 25px;
}
.social-links a {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    margin-right: 10px;
    transition: background 0.3s;
}
.social-links a:hover {
    background: #e43c5c;
    color: #fff;
}
.contact-form .form-control {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    padding: 12px 15px;
    height: auto;
    margin-bottom: 15px;
    transition: border-color 0.3s;
}
.contact-form .form-control:focus {
    border-color: #e43c5c;
    box-shadow: none;
    background: rgba(255,255,255,0.12);
}
.contact-form .form-control::-webkit-input-placeholder { color: #888; }
.contact-form .form-control::-moz-placeholder { color: #888; }
.contact-form .btn-submit {
    width: 100%;
    padding: 13px;
    background: #e43c5c;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}
.contact-form .btn-submit:hover {
    background: #c8324e;
}

/* ===== FOOTER ===== */
footer {
    background: #222;
    color: #888;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}
footer .accent {
    color: #e43c5c;
}

/* ===== BOOKING MODAL ===== */
.booking-modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.booking-modal-overlay.active {
    display: flex;
}
.booking-modal {
    background: #fff;
    border-radius: 15px;
    width: 100%;
    max-width: 550px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 35px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}
@keyframes modalSlideIn {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.booking-modal .modal-close {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    background: none;
    border: none;
    line-height: 1;
    transition: color 0.2s;
}
.booking-modal .modal-close:hover { color: #e43c5c; }
.booking-modal h2 {
    color: #e43c5c;
    font-size: 24px;
    margin-bottom: 5px;
}
.booking-modal .tour-selected {
    font-size: 14px;
    color: #888;
    margin-bottom: 25px;
}
.booking-modal .form-group {
    margin-bottom: 16px;
}
.booking-modal .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 5px;
}
.booking-modal .form-group .form-control {
    width: 100%;
    padding: 11px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
    outline: none;
    color: #333;
    background: #fff;
    height: auto;
}
.booking-modal .form-group .form-control:focus {
    border-color: #e43c5c;
    box-shadow: none;
}
.booking-modal .form-row {
    display: flex;
    gap: 15px;
}
.booking-modal .form-row .form-group {
    flex: 1;
}
.booking-modal .total-bar {
    background: #f8f8f8;
    padding: 12px 18px;
    border-radius: 8px;
    margin-bottom: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}
.booking-modal .total-bar .total-amount {
    font-size: 22px;
    font-weight: 700;
    color: #e43c5c;
}
.booking-modal .btn-confirm {
    width: 100%;
    padding: 14px;
    background: #e43c5c;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}
.booking-modal .btn-confirm:hover {
    background: #c8324e;
}
.booking-success {
    display: none;
    text-align: center;
    padding: 30px 0;
}
.booking-success .fa-check-circle {
    font-size: 60px;
    color: #4CAF50;
    margin-bottom: 15px;
}
.booking-success h3 { color: #333; margin-bottom: 8px; }
.booking-success p { color: #777; font-size: 14px; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    z-index: 8000;
    transition: transform 0.3s;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

/* ===== DEMO BADGE ===== */

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .banner-carousel { height: 500px; }
}
@media (max-width: 992px) {
    .banner-carousel { height: 400px; }
    .banner-overlay h1 { font-size: 32px; }
    .gallery-masonry { column-count: 2; }
    .tour-detail-banner { height: 350px; }
    .about-text { padding-left: 0; margin-top: 25px; }
}
@media (max-width: 768px) {
    .banner-carousel { height: 300px; }
    .banner-overlay { padding: 40px 20px 25px; }
    .banner-overlay h1 { font-size: 26px; }
    .banner-overlay p { font-size: 15px; }
    section { padding: 50px 0; }
    .section-title { font-size: 26px; }
    .gallery-masonry { column-count: 2; }
    .tour-detail-banner { height: 250px; }
    .booking-modal .form-row { flex-direction: column; gap: 0; }
    .quick-info-item { min-width: 120px; }
}
@media (max-width: 480px) {
    .banner-carousel { height: 200px; }
    .banner-overlay h1 { font-size: 22px; }
    .gallery-masonry { column-count: 1; }
    .tour-detail-banner { height: 200px; }
    .navbar-brand img { width: 180px; }
}

/* ===== BREADCRUMB ===== */
.breadcrumb-bar {
    background: #f5f5f5;
    padding: 12px 0;
    margin-top: 50px;
    font-size: 14px;
}
.breadcrumb-bar a {
    color: #e43c5c;
}
.breadcrumb-bar span {
    color: #888;
}