/* Custom CSS for Trawey Clone */

:root {
    --primary-color: #8B1538;
    --secondary-color: #f8f9fa;
    --accent-color: #dc3545;
    --text-dark: #333;
    --text-muted: #6c757d;
    --border-color: #dee2e6;
}

:root {
            --primary-color: #A88F59;
            --secondary-color: #EDC9AF;
            --dark-color: #695B33;
            --light-color: #ecf0f1;
            --sand-color: #f8f2e4;
            --sunset-color: #ff7e5f;
        }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

p{
    font-family: "Open Sans", sans-serif;
    font-family: "Poppins", sans-serif;
}
    
h1, h2, h3, h4, h5, h6 {
    font-family: "Open Sans", sans-serif;
    font-family: "Merriweather", serif;
}

h1 {
  font-size: 2.5em; /* Increased for better visibility */
  font-weight: 700; /* Bolder weight */
  line-height: 1.2; /* Improved readability */
}

h2 {

  font-size: 2em;
  font-weight: 700;
  line-height: 1.3;

}

h3 {
  display: block;
  font-size: 1.75em;
  font-weight: 600;
  line-height: 1.4;

}

h4 {

  font-weight: 600;
  line-height: 1.5;

}

h5 {
  font-weight: 500;
  line-height: 1.6;
}

h6 {
  font-size: 1em;
  font-weight: 500;
  line-height: 1.7;
}


h1 {
  display: block;
  font-size: 2.5rem; /* Matches Bootstrap 5's h1 size for standardization */
  font-weight: 700; /* Bolder for visibility, overrides Bootstrap's default 500 if needed */
  line-height: 1.2;
}

h2 {
  display: block;
  font-size: 2rem; /* Matches Bootstrap 5's h2 size */
  font-weight: 700;
  line-height: 1.3;
}

h3 {
  display: block;
  font-size: 1.75rem; /* Matches Bootstrap 5's h3 size */
  font-weight: 600;
  line-height: 1.4;
}

h4 {
  display: block;
  font-size: 1.5rem; /* Matches Bootstrap 5's h4 size */
  font-weight: 600;
  line-height: 1.5;
}

h5 {
  display: block;
  font-size: 1.25rem; /* Matches Bootstrap 5's h5 size */
  font-weight: 500;
  line-height: 1.6;
}

h6 {
  display: block;
  font-size: 1rem; /* Matches Bootstrap 5's h6 size */
  font-weight: 500;
  line-height: 1.7;
}

.text-primary {
            color:#695B33 !important;
        }
.bg-primary {
            background-color: #A88F59 !important;
        }

/* Header Styles */
.header-section {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 0.75rem 1rem !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.social-icons a {
    color: var(--text-muted);
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #6d1028;
    border-color: #6d1028;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 21, 56, 0.3);
}

/* Footer */
.footer {
            background-color: var(--dark-color);
            color: white;
        }

.footer-links a {
            color: var(--light-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

.footer-links a:hover {
            color: var(--primary-color);
        }

.footer .social-icons i {
            font-size: 1.5rem;
            margin-right: 15px;
            color: var(--light-color);
            transition: color 0.3s ease;
        }

.footer .social-icons i:hover {
            color: var(--primary-color);
        }

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--text-muted);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-section h1 {
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
}

.tour-info .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.pricing-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.pricing-card .card-body {
    padding: 2rem;
}

.pricing-card .btn-danger {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.pricing-card .btn-danger:hover {
    background-color: #c82333;
    border-color: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.social-share .btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-share .btn:hover {
    transform: translateY(-2px);
}

.award-img {
    height: 50px;
    width: auto;
    margin: 0.25rem;
}

/* Gallery Section */
.gallery-section img {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-section img:hover {
    transform: scale(1.05);
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.feature-item {
    padding: 1.5rem;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.feature-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.feature-icon i {
    color: var(--primary-color);
}

/* Overview Section */
.overview-section {
    padding: 4rem 0;
}

.video-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.chat-button-link {
    text-decoration: none;
}
    .header-section {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* ----------------------------------
   Custom Dropdown Menu Styles
   ---------------------------------- */
.custom-dropdown-menu {
    border: none;
    padding: 0.5rem;
}

.custom-dropdown-menu .dropdown-item {
    color: #4b5563; /* Text color */
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease-in-out; /* Smooth transition for hover effects */
}

.custom-dropdown-menu .dropdown-item:hover,
.custom-dropdown-menu .dropdown-item:focus {
    background-color: #f3f4f6; /* Lighter background on hover */
    color: #1f2937; /* Slightly darker text */
}

/* ----------------------------------
   Social Icons Styles
   ---------------------------------- */
.social-icons a {
    color: #6c757d;
    font-size: 1.25rem;
    transition: color 0.2s ease-in-out;
}

.social-icons a:hover {
    color: #0d6efd; /* Bootstrap primary color on hover */
}

/* ----------------------------------
   Expert Chat Button Styles
   ---------------------------------- */
.btn-primary {
    border-radius: 0.5rem;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
}

.btn-primary:hover {
    transform: translateY(-2px); /* Slight lift effect on hover */
}

/* ----------------------------------
   Hover Dropdown Behavior for Desktop
   ---------------------------------- */
/* This media query ensures the hover effect only applies on larger screens (desktop) */
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .dropdown:hover .dropdown-menu {
        display: block; /* Show the dropdown menu on hover */
        margin-top: 0; /* Corrects positioning for smooth transition */
    }
}

/* ----------------------------------
   Mobile-specific Styles (for collapsed menu)
   ---------------------------------- */
@media (max-width: 991.98px) {
    .navbar-nav {
        padding-top: 1rem; /* Add some space at the top of the collapsed menu */
    }

    .nav-item {
        margin-bottom: 0.5rem; /* Space between each nav item */
    }

    .nav-link {
        padding-left: 1rem; /* Indent nav links for better readability */
    }

    /* Style for the dropdown menu when it's open on mobile */
    .dropdown-menu {
        border-left: 2px solid #e2e8f0; /* Add a subtle line to indent dropdown items */
        margin-left: 1rem;
    }

    .dropdown-menu .dropdown-item {
        padding-left: 1.5rem; /* Further indent dropdown items */
    }

    .d-flex.align-items-center {
        flex-direction: column; /* Stack social icons and button on mobile */
        align-items: flex-start !important;
        margin-top: 1.5rem;
    }

    .social-icons {
        margin-bottom: 1rem;
        margin-left: 0 !important;
    }

    .social-icons a {
        margin-right: 1.5rem !important; /* Increase space between mobile icons */
    }
}

    /* FAQ Accordion Container */
.accordion {
  margin: 0 auto; /* Center the accordion */
}

/* Accordion Item */
.accordion-item {
  border: none; /* Remove default borders */
  border-bottom: 1px solid #d4d4d4; /* Thin black separator */
  background-color: #ffffff; /* White background */
}

/* Accordion Header */
h2.accordion-header {
  margin: 0; /* Remove default h2 margins */
  font-size: 1.3rem; /* Minimalist size */
  font-weight: 600; /* Slightly bold for clarity */
  color: #343a40; /* Black text */
  background-color: #ffffff; /* White background */
}

/* Accordion Button */
h2.accordion-header .accordion-button {
  padding: 15px 15px; /* Minimal padding */
  width: 100%; /* Full width */
  text-align: left; /* Left-aligned text */
  font-size: inherit; /* Inherit from h2 */
  font-weight: inherit; /* Inherit from h2 */
  color: #343a40; /* Black text */
  background-color: transparent; /* No background */
  border: none; /* No border */
  position: relative; /* For positioning the icon */
}

/* Button when expanded */
h2.accordion-header .accordion-button:not(.collapsed) {
  color: #343a40; /* Keep black text */
  background-color: #ffffff; /* Keep white background */
  box-shadow: none; /* Explicitly remove any shadow */
}

/* Hover effect */
h2.accordion-header:hover .accordion-button {
  background-color: #f5f5f5; /* Subtle light gray hover */
}

/* Plus icon when collapsed */
h2.accordion-header .accordion-button::after {
  content: "+"; /* Plus icon */
  font-size: 1.2rem; /* Slightly larger for visibility */
  font-weight: bold; /* Bold icon */
  color: #343a40; /* Black icon */
  background-image: none; /* Remove Bootstrap's SVG */
  width: auto; /* Override Bootstrap's fixed width */
  height: auto; /* Override Bootstrap's fixed height */
  position: absolute; /* Position it */
  right: 15px; /* Align to the right */
  top: 50%; /* Center vertically */
  transform: translateY(-50%); /* Perfect centering */
}

/* Minus icon when expanded */
h2.accordion-header .accordion-button:not(.collapsed)::after {
  content: "-"; /* Minus icon */
  transform: translateY(-50%); /* Keep centered */
}

/* Accordion Body */
.accordion-body {
  padding: 15px; /* Minimal padding */
  font-size: 1rem; /* Readable text */
  line-height: 1.5; /* Simple spacing */
  color: #343a40; /* Black text */
  background-color: #ffffff; /* White background */
}

/* Responsive Adjustments */
@media (max-width: 576px) {
  h2.accordion-header {
    font-size: 1rem; /* Smaller on mobile */
  }
  h2.accordion-header .accordion-button {
    padding: 10px 12px; /* Reduced padding */
  }
  h2.accordion-header .accordion-button::after {
    right: 12px; /* Adjust icon position */
  }
  .accordion-body {
    padding: 12px; /* Reduced padding on mobile */
    font-size: 0.9rem; /* Slightly smaller text */
  }
}

.timeline-item {
    border-left: 3px solid var(--primary-color);
    padding-left: 1.5rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* Quick Links Section */
.quick-links-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #6d1028 100%);
}

.quick-links-section a:hover {
    text-decoration: underline !important;
}

/* Additional Content */
.additional-content {
    background: white;
}

.itinerary-step {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.itinerary-step:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chat-button {
    background: var(--primary-color);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(139, 21, 56, 0.3);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chat-button:hover {
    background: #6d1028;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 21, 56, 0.4);
}

.chat-expert-btn {
    background-color: var(--accent-color);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.chat-expert-btn:hover {
    background-color: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

/* Promotional Banner */
.promo-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #d4a574 0%, #c19653 100%);
    color: white;
    padding: 1rem 0;
    z-index: 999;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
}

.promo-text {
    font-weight: 600;
    font-size: 1.1rem;
}

.promo-banner .btn-success {
    background-color: #28a745;
    border-color: #28a745;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.promo-banner .btn-success:hover {
    background-color: #218838;
    border-color: #218838;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .pricing-card {
        position: static;
        margin-top: 2rem;
    }
    
    .gallery-section img {
        height: 150px;
        margin-bottom: 1rem;
    }
    
    .feature-item {
        margin-bottom: 1rem;
    }
    
    .chat-widget {
        bottom: 80px;
    }
    
    .promo-banner {
        padding: 0.5rem 0;
    }
    
    .promo-text {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .tour-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .tour-info .badge {
        margin-bottom: 0.5rem;
    }
    
    .accordion-button {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .accordion-body {
        padding: 1rem;
    }
    
    .chat-button span {
        display: none;
    }
    
    .chat-button {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        justify-content: center;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hover Effects */
.btn-hover-effect {
    position: relative;
    overflow: hidden;
}

.btn-hover-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-hover-effect:hover::before {
    left: 100%;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6d1028;
}

/* Focus States for Accessibility */
.btn:focus,
.form-control:focus,
.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(139, 21, 56, 0.25);
}

/* Print Styles */
@media print {
    .header-section,
    .chat-widget,
    .promo-banner {
        display: none;
    }
    
    .container {
        max-width: none;
    }
    
    .accordion-collapse {
        display: block !important;
    }
}

