/* Custom CSS Variables (Inherited from Header) */
:root {
    --primary-color: #0A3D62;
    --accent-color: #FF6B00;
    --text-dark: #2C3E50;
    --bg-light: #F8FAFC;
    --white: #FFFFFF;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: url('https://images.unsplash.com/photo-1506461883276-594a12b11cf3?q=80&w=1600&auto=format&fit=crop') no-repeat center center/cover;
    padding: 100px 0 120px 0;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 61, 98, 0.88) 0%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.hero-tagline {
    background: rgba(255, 107, 0, 0.2);
    border: 1px solid var(--accent-color);
    color: #FF8C38;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 18px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 17px;
    line-height: 1.6;
    color: #E2E8F0;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

.btn-primary:hover {
    background-color: #E05E00;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Search Box Form */
.search-box-wrapper {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 900px;
    margin: 0 auto;
}

.search-form {
    display: flex;
    gap: 20px;
    align-items: flex-end;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group label i {
    color: var(--accent-color);
    margin-right: 5px;
}

.form-input {
    padding: 12px 15px;
    border: 1px solid #CBD5E1;
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-dark);
    outline: none;
    transition: 0.3s;
    background: #F8FAFC;
}

.form-input:focus {
    border-color: var(--primary-color);
    background: var(--white);
}

.btn-search {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 13px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.btn-search:hover {
    background-color: #072A45;
}

/* Features Bar */
.features-bar {
    background-color: var(--white);
    padding: 40px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(10, 61, 98, 0.08);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.feature-text p {
    font-size: 12px;
    color: #64748B;
}

/* Responsive CSS */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 28px;
    }
    .search-form {
        flex-direction: column;
        gap: 15px;
    }
    .hero-buttons {
        flex-direction: column;
    }
}

:root {
    --primary-color: #0A3D62;
    --accent-color: #FF6B00;
    --text-dark: #2C3E50;
    --text-muted: #64748B;
    --bg-light: #F8FAFC;
    --white: #FFFFFF;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Global Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 28px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 8px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 15px;
}

/* 1. Hero Section */
.hero-section {
    position: relative;
    background: url('https://images.unsplash.com/photo-1506461883276-594a12b11cf3?q=80&w=1600&auto=format&fit=crop') no-repeat center center/cover;
    padding: 90px 0 110px 0;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 61, 98, 0.88) 0%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.hero-tagline {
    background: rgba(255, 107, 0, 0.2);
    border: 1px solid var(--accent-color);
    color: #FF8C38;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 16px;
    color: #E2E8F0;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
    background-color: #E05E00;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 10px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Search Box Wrapper */
.search-box-wrapper {
    background: var(--white);
    padding: 22px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
}

.search-form {
    display: flex;
    gap: 15px;
    align-items: flex-end;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-group label i {
    color: var(--accent-color);
    margin-right: 5px;
}

.form-input {
    padding: 12px 14px;
    border: 1px solid #CBD5E1;
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-dark);
    outline: none;
    transition: 0.3s;
    background: #F8FAFC;
    width: 100%;
}

.form-input:focus {
    border-color: var(--primary-color);
    background: var(--white);
}

.btn-search {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 13px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.btn-search:hover {
    background-color: #072A45;
}

/* 2. Quick Trust Features Bar */
.features-bar {
    background-color: var(--white);
    padding: 35px 0;
    box-shadow: var(--shadow-sm);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(10, 61, 98, 0.08);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.feature-text p {
    font-size: 12px;
    color: var(--text-muted);
}

/* 3. Featured Tours Section */
.tours-section {
    padding: 60px 0;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tour-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.tour-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.tour-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.tour-card:hover .tour-img img {
    transform: scale(1.05);
}

.tour-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.tour-details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tour-details h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.tour-meta {
    font-size: 13px;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 12px;
}

.tour-highlights {
    list-style: none;
    margin-bottom: 20px;
    flex-grow: 1;
}

.tour-highlights li {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.tour-highlights li i {
    color: #25D366;
    margin-right: 6px;
}

.tour-action {
    display: flex;
    gap: 10px;
}

.btn-card-outline {
    flex: 1;
    text-align: center;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 9px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-card-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-card-wa {
    flex: 1;
    text-align: center;
    background: #25D366;
    color: var(--white);
    padding: 9px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-card-wa:hover {
    background: #1EBE5D;
}

.view-all-wrapper {
    text-align: center;
    margin-top: 40px;
}

.btn-view-all {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.btn-view-all:hover {
    background: #072A45;
}

/* 4. Customer Reviews Section */
.reviews-section {
    background: var(--white);
    padding: 60px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.review-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.stars {
    color: #FFC107;
    margin-bottom: 12px;
    font-size: 14px;
}

.review-card p {
    font-size: 14px;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 15px;
}

.review-card h4 {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
}

/* 5. Gallery Preview Section */
.gallery-preview-section {
    padding: 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

/* 6. Quick Contact Section */
.contact-section {
    background: var(--white);
    padding: 60px 0;
    border-top: 1px solid #E2E8F0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.contact-info h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: rgba(10, 61, 98, 0.08);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.info-item strong {
    display: block;
    font-size: 13px;
    color: var(--text-dark);
}

.info-item p {
    margin-bottom: 0;
    font-weight: 600;
    color: var(--primary-color);
}

.contact-form-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.contact-form-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-form-card .form-group {
    margin-bottom: 15px;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 26px;
    }
    .search-form {
        flex-direction: column;
        gap: 12px;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .hero-buttons {
        flex-direction: column;
    }
}

/*tours.php css start*/
/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0A3D62 0%, #041B2D 100%);
    color: #FFFFFF;
    padding: 50px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 8px;
}

.page-header p {
    color: #CBD5E1;
    font-size: 15px;
}

/* Tour Card Styling Adjustments */
.tours-listing-section {
    padding: 50px 0;
}

.tour-route {
    font-size: 13px;
    color: #475569;
    margin-bottom: 8px;
}

.tour-route i {
    color: #FF6B00;
}

.tour-date-box {
    background: #F1F5F9;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    color: #1E293B;
    margin-bottom: 12px;
    border-left: 3px solid #0A3D62;
}

.tour-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-top: 8px;
    border-top: 1px dashed #E2E8F0;
}

.tour-price span {
    font-size: 12px;
    color: #64748B;
}

.tour-price strong {
    font-size: 16px;
    color: #FF6B00;
}

/*tours.php css complete*/

/*tour-detail css start here*/
/* ==========================================
   Tour Details Page Styles
   ========================================== */

/* Header Hero */
.tour-detail-header {
    background: linear-gradient(135deg, #0A3D62 0%, #041B2D 100%);
    color: #FFFFFF;
    padding: 45px 0 35px 0;
}

.tour-badge {
    background: rgba(255, 107, 0, 0.2);
    border: 1px solid #FF6B00;
    color: #FF8C38;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.tour-detail-header h1 {
    font-size: 32px;
    margin: 12px 0 6px 0;
}

.tour-route-text {
    color: #CBD5E1;
    font-size: 15px;
    margin-bottom: 20px;
}

.tour-quick-info {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.info-pill {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    color: #F8FAFC;
}

.info-pill.highlight-price {
    background: #FF6B00;
    font-weight: 600;
}

/* Page Body Layout */
.tour-detail-body {
    padding: 40px 0;
}

.tour-grid-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.detail-block {
    background: #FFFFFF;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}

.detail-block h3 {
    font-size: 20px;
    color: #0A3D62;
    margin-bottom: 20px;
    border-bottom: 2px solid #F1F5F9;
    padding-bottom: 10px;
}

/* PDF Itinerary Styles */
.pdf-actions {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
}

.btn-pdf-view {
    background: #0A3D62;
    color: #FFFFFF;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-pdf-download {
    background: #16A34A;
    color: #FFFFFF;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-pdf-view:hover { background: #041B2D; }
.btn-pdf-download:hover { background: #15803D; }

.pdf-iframe {
    width: 100%;
    height: 600px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
}

.pdf-not-found-msg {
    color: #64748B;
    background: #F8FAFC;
    padding: 15px;
    border-radius: 6px;
    font-size: 14px;
}

/* Gallery Grid */
.tour-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.gallery-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
}

.gallery-item.large-img {
    grid-column: span 3;
}

.gallery-item.large-img img {
    height: 280px;
}

/* Inclusions & Exclusions */
.inc-exc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.inc-box h4 { color: #16A34A; font-size: 15px; margin-bottom: 12px; }
.exc-box h4 { color: #DC2626; font-size: 15px; margin-bottom: 12px; }

.inc-box ul, .exc-box ul { list-style: none; padding: 0; margin: 0; }
.inc-box li, .exc-box li { font-size: 13px; margin-bottom: 8px; color: #475569; display: flex; align-items: flex-start; gap: 8px; }
.inc-box li i { color: #16A34A; margin-top: 3px; }
.exc-box li i { color: #DC2626; margin-top: 3px; }

/* Sticky Booking Sidebar */
.sidebar-card {
    background: #FFFFFF;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 20px;
}

.sidebar-card h3 {
    font-size: 18px;
    color: #0A3D62;
    margin-bottom: 15px;
}

.sidebar-price {
    background: #FFF7ED;
    border: 1px solid #FFEDD5;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.sidebar-price span {
    font-size: 13px;
    color: #64748B;
}

.sidebar-price strong {
    font-size: 20px;
    color: #FF6B00;
    display: block;
}

.sidebar-trust-points p {
    font-size: 13px;
    color: #475569;
    margin-bottom: 10px;
}

.sidebar-trust-points i {
    color: #FF6B00;
    margin-right: 8px;
}

.btn-sidebar-wa {
    display: block;
    text-align: center;
    background: #25D366;
    color: #FFFFFF;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: 0.3s;
}

.btn-sidebar-call {
    display: block;
    text-align: center;
    background: #0A3D62;
    color: #FFFFFF;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    transition: 0.3s;
}

.btn-sidebar-wa:hover { background: #1EBE5D; }
.btn-sidebar-call:hover { background: #041B2D; }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .tour-grid-layout { grid-template-columns: 1fr; }
    .inc-exc-grid { grid-template-columns: 1fr; }
    .gallery-item.large-img { grid-column: span 1; }
    .tour-gallery-grid { grid-template-columns: 1fr; }
    .pdf-actions { flex-direction: column; }
}
/*tour-detail.php css code complete*/