/* ==========================================
   Custom Styles for Morocco Camel Trekking
   ========================================== */

/* ==========================================
   PRICE COLOR FIX - Make All Prices White
   ========================================== */
.tour-price .price-amount,
.tour-price .h3-title,
.price-amount {
    color: #ffffff !important;
}

/* Original price (strikethrough) */
.original-price {
    text-decoration: line-through;
    color: #cccccc;
    font-size: 1.2rem;
    margin-right: 8px;
}


/* ==========================================
   INTRODUCTION TEXT STYLES
   ========================================== */
.tour-intro {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 12px;
    border-left: 5px solid #F5A623;
    margin-bottom: 40px;
}
.tour-intro h2 {
    color: #1A6B84;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    margin-bottom: 15px;
}
.tour-intro h2 span {
    color: #F5A623;
}
.tour-intro p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
}
.tour-intro p:last-child {
    margin-bottom: 0;
}
.tour-intro strong {
    color: #1A6B84;
}

/* ==========================================
   BANNER SUBTITLE
   ========================================== */
.banner-subtitle {
    color: #fff;
    font-size: 20px;
    max-width: 700px;
    margin: 15px auto 0;
}

/* ==========================================
   RESPONSIVE TOUR HIGHLIGHTS (Base + Mobile Improvements)
   ========================================== */
.tour-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 20px;
    padding: 0;
    list-style: none;
}
.tour-highlights li {
    padding: 8px 12px;
    background: #f8f4f0;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 8px;
}
.tour-highlights li::before {
    content: "✦";
    color: #c49a6c;
    font-size: 16px;
    flex-shrink: 0;
}
.tour-highlights li strong {
    font-weight: 600;
    color: #2c1810;
}

/* Tablet and below – keep 2 columns until 768px, then 1 column */
@media (max-width: 992px) {
    .tour-highlights {
        gap: 16px;
    }
    .tour-highlights li {
        font-size: 15px !important;
        line-height: 1.7;
        padding: 14px 16px;
        border-radius: 8px;
    }
    .tour-highlights li::before {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .tour-highlights {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }
    .tour-highlights li {
        font-size: 16px !important;
        line-height: 1.8;
        padding: 16px;
        border-radius: 10px;
    }
    .tour-highlights li::before {
        font-size: 20px;
    }
    .tour-highlights li strong {
        font-size: 16px;
    }
}

/* ==========================================
   REVIEW STARS
   ========================================== */
.rb-rating-value .fa-star {
    color: #f5a623;
}
.rb-rating-value .fa-star-half-alt {
    color: #f5a623;
}
.rb-rating-value .fa-star-o {
    color: #ddd;
}

/* Star Rating Styles */
.star-rating {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 2px;
}
.star-rating input {
    display: none;
}
.star-rating label {
    cursor: pointer;
    color: #ddd;
    font-size: 1.2rem;
    transition: color 0.2s;
}
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #F5A623;
}

/* ==========================================
   COMMENTER NAME
   ========================================== */
.commenter-name {
    font-weight: 600;
    color: #2c1810;
    font-size: 16px;
}

/* ==========================================
   LABEL STYLES
   ========================================== */
.label-text {
    font-weight: 600;
    color: #2c1810;
    font-size: 14px;
}
.section-label {
    font-size: 14px;
    font-weight: 600;
    color: #c49a6c;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.location-label {
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.info-label {
    font-size: 11px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.progress-label {
    font-weight: 600;
    color: #2c1810;
    font-size: 14px;
}
.rating-number {
    font-size: 48px;
    font-weight: 700;
    color: #c49a6c;
}

/* Honeypot field - hidden from users */
.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

/* ==========================================
   FAQ STYLES
   ========================================== */
.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e8e0d8;
    border-radius: 8px;
    overflow: hidden;
}
.faq-question {
    padding: 15px 20px;
    background: #f8f4f0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #2c1810;
    transition: background 0.3s ease;
}
.faq-question:hover {
    background: #f0e8e0;
}
.faq-question .faq-toggle {
    font-size: 18px;
    color: #c49a6c;
    transition: transform 0.3s ease;
}
.faq-question.active .faq-toggle {
    transform: rotate(180deg);
}
.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #ffffff;
}
.faq-answer.open {
    padding: 15px 20px;
    max-height: 500px;
}
.faq-answer p {
    margin-bottom: 0;
    color: #555;
    line-height: 1.6;
}

/* ==========================================
   FOOTER - White Text on Dark Background
   ========================================== */
.site-footer {
    background-color: #1a1a1a !important;
}
.site-footer .overlay {
    background-color: rgba(26, 26, 26, 0.95) !important;
}
.site-footer .footer-title .h3-title,
.site-footer .footer-title h3 {
    color: #ffffff !important;
    font-weight: 700 !important;
}
.site-footer .footer-menu ul li a,
.site-footer .footer-contact ul li a,
.site-footer .footer-contact ul li .contact-label,
.site-footer .footer-text p,
.site-footer .copyright-text,
.site-footer .copyright-text a,
.site-footer .copyright-link ul li a {
    color: #ffffff !important;
}
.site-footer .footer-menu ul li a:hover,
.site-footer .copyright-link ul li a:hover,
.site-footer .copyright-text a:hover {
    color: #c49a6c !important;
}
.site-footer .footer-contact ul li .contact-label {
    font-weight: 600;
    color: #c49a6c !important;
}
.site-footer .social-icons ul li a .icon {
    color: #ffffff !important;
}
.site-footer .social-icons ul li a:hover .icon {
    color: #c49a6c !important;
}
.site-footer .newsletter-form .form-input {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}
.site-footer .newsletter-form .form-input::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}
.site-footer .newsletter-form .sec-btn {
    background: #c49a6c !important;
    color: #ffffff !important;
}
.site-footer .newsletter-form .sec-btn:hover {
    background: #a87d52 !important;
}

/* Footer Logo Size */
.site-footer .footer-logo img {
    max-width: 258px;
    height: auto;
}

/* ==========================================
   SIDEBAR FORM STYLES
   ========================================== */
.find-tour-form .form-control-span {
    margin-bottom: 18px;
}
.find-tour-form .form-input {
    padding-left: 45px;
    background: #f9f9f9;
    border: 1px solid #e0d6cc;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 15px;
    height: 48px;
    width: 100%;
}
.find-tour-form .form-input:focus {
    border-color: #C89B5A;
    box-shadow: 0 0 0 3px rgba(200, 155, 90, 0.15);
    background: #fff;
    outline: none;
}
.find-tour-form .form-control-span .icon {
    position: absolute;
    top: 14px;
    left: 15px;
    color: #C89B5A;
    font-size: 16px;
    z-index: 1;
    pointer-events: none;
}
.find-tour-form .form-control-span.no-icon .form-input {
    padding-left: 15px;
}
.find-tour-form textarea.form-input {
    height: auto;
    padding-top: 12px;
    resize: vertical;
    min-height: 100px;
}
.find-tour-form select.form-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 40px;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.find-now-btn {
    width: 100% !important;
    padding: 0 20px !important;
    font-size: 16px !important;
    letter-spacing: 1px !important;
    background: #C89B5A !important;
    border: none !important;
    transition: all 0.3s ease !important;
    height: 50px !important;
}
.find-now-btn:hover {
    background: #a87d52 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 20px rgba(200, 155, 90, 0.35) !important;
}
.find-now-btn:disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}
.find-now-btn .fa-spinner {
    margin-right: 8px;
}

.form-privacy-note {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
    margin-bottom: 0;
}
.form-privacy-note a {
    color: #C89B5A;
    text-decoration: underline;
}
.form-privacy-note a:hover {
    color: #a87d52;
}

#form-message {
    transition: all 0.3s ease;
    margin-top: 10px;
    padding: 12px 15px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.6;
}
#form-message ul {
    margin: 5px 0 0 20px;
    padding-left: 0;
}
#form-message ul li {
    list-style: disc;
    color: inherit;
}

/* ==========================================
   WHY BOOK WITH US
   ========================================== */
.why-book-with-us {
    background: #f7f4ef;
    border-left: 3px solid #C89B5A;
    padding: 30px;
    border-radius: 8px;
}
.why-book-with-us .book-with-list {
    padding: 0;
    margin: 0;
    list-style: none;
}
.why-book-with-us .book-with-list li {
    padding: 8px 0;
    color: #555;
    font-size: 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
}
.why-book-with-us .book-with-list li:last-child {
    border-bottom: none;
}
.why-book-with-us .book-with-list li i {
    color: #C89B5A;
    margin-right: 10px;
    font-size: 16px;
}

/* ==========================================
   GET A QUESTION
   ========================================== */
.get-a-questions {
    background: #F5A623;
    border-radius: 8px;
    padding: 30px;
    color: #fff;
}
.get-a-questions .line-title {
    border-color: #fff;
}
.get-a-questions .line-title .h4-title {
    color: #fff !important;
}
.get-a-questions p {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    line-height: 1.7;
}
.gaq-list-item {
    padding: 0;
    margin: 0;
    list-style: none;
}
.gaq-list-item li {
    margin-bottom: 14px;
}
.gaq-list-item li:last-child {
    margin-bottom: 0;
}
.gaq-list-item li a {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.gaq-list-item li a:hover {
    color: #2B2B2B;
}
.gaq-list-item li i {
    width: 28px;
    font-size: 18px;
    color: #fff;
    margin-right: 12px;
    text-align: center;
}

/* ==========================================
   WIDGET GENERAL STYLES
   ========================================== */
.widget .line-title {
    margin-bottom: 20px;
    padding-left: 10px;
    border-left: 3px solid #C89B5A;
}
.widget .line-title .h3-title {
    font-size: 20px;
    font-weight: 700;
    color: #2B2926;
    margin-bottom: 0;
}
.widget {
    margin-bottom: 30px;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}
.widget:last-child {
    margin-bottom: 0;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-headline {
    text-align: center;
}
.hero-headline h1 {
    font-family: var(--secondary-font-family);
    font-weight: 800;
    font-size: 48px;
    line-height: 1.1;
    color: var(--white-color);
    margin-bottom: 15px;
    letter-spacing: -0.03em;
}
.hero-headline h1 span {
    color: #F5A623;
}
.hero-headline p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ==========================================
   TRUST STATISTICS
   ========================================== */
.trust-stats {
    background: #fff;
    padding: 40px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    border-top: 3px solid #F5A623;
}
.stat-item {
    text-align: center;
}
.stat-number {
    font-family: var(--secondary-font-family);
    font-size: 36px;
    font-weight: 800;
    color: #1A6B84;
    display: block;
    line-height: 1.2;
}
.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    display: block;
    margin-top: 5px;
}

/* ==========================================
   CTA BUTTONS
   ========================================== */
.cta-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}
.cta-btn-group .sec-btn {
    width: auto;
    padding: 0 40px;
}
.cta-btn-group .sec-btn.whatsapp {
    background: #25D366;
}
.cta-btn-group .sec-btn.whatsapp:hover {
    background: #1da851;
}
.cta-btn-group .sec-btn.email {
    background: #D14836;
}
.cta-btn-group .sec-btn.email:hover {
    background: #b03a2a;
}
.cta-btn-group .sec-btn i {
    margin-right: 8px;
}

/* ==========================================
   FINAL CTA OVERLAY
   ========================================== */
.final-cta-section {
    padding: 100px 0;
    position: relative;
}
.final-cta-section .h2-title {
    color: #ffffff;
    font-size: 42px;
}
.final-cta-section .h2-title span {
    color: #F5A623;
}
.final-cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    max-width: 700px;
    margin: 15px auto 30px;
}

/* ==========================================
   TRIPADVISOR BUTTON
   ========================================== */
.tripadvisor-btn-wrap {
    padding-top: 30px;
}
.tripadvisor-btn-wrap .btn {
    background-color: #F5A623;
    color: #fff;
    border-radius: 5px;
    padding: 14px 40px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}
.tripadvisor-btn-wrap .btn:hover {
    background-color: #e09515;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(245, 166, 35, 0.4);
}

/* ==========================================
   FAQ BOX STYLES (Home Page)
   ========================================== */
.faq-box {
    background: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    border-left: 4px solid #F5A623;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.faq-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.faq-box h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1A6B84;
    margin-bottom: 8px;
}
.faq-box p {
    margin-bottom: 0;
    color: #555;
}
.faq-box p a {
    color: #1A6B84;
    font-weight: 600;
    text-decoration: underline;
}
.faq-box p a:hover {
    color: #F5A623;
}

/* ==========================================
   BANNER ADJUSTMENTS
   ========================================== */
.banner-slide-box {
    padding: 150px 0;
}

/* ==========================================
   RESPONSIVE - TABLET & MOBILE
   ========================================== */
@media (max-width: 991px) {
    .site-footer .footer-logo img {
        max-width: 200px;
    }
}

@media (max-width: 767px) {
    .hero-headline h1 {
        font-size: 32px;
    }
    .hero-headline p {
        font-size: 16px;
    }
    .stat-number {
        font-size: 28px;
    }
    .stat-item {
        margin-bottom: 20px;
    }
    .stat-item:last-child {
        margin-bottom: 0;
    }
    .final-cta-section .h2-title {
        font-size: 28px;
    }
    .final-cta-section {
        padding: 60px 0;
    }
    .banner-slide-box {
        padding: 100px 0;
    }
    .faq-box {
        padding: 20px;
    }
    .cta-btn-group .sec-btn {
        padding: 0 25px;
        font-size: 14px;
    }
    .tripadvisor-btn-wrap .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .hero-headline h1 {
        font-size: 26px;
    }
    .site-footer .footer-logo img {
        max-width: 160px;
    }
    .final-cta-section .h2-title {
        font-size: 24px;
    }
    .find-tour-form .form-input {
        font-size: 14px;
        padding: 12px 15px 12px 40px;
        height: 44px;
    }
    .find-tour-form .form-control-span .icon {
        top: 12px;
        left: 12px;
        font-size: 14px;
    }
    .find-now-btn {
        font-size: 14px !important;
        height: 44px !important;
    }
    .gaq-list-item li a {
        font-size: 13px;
    }
    .widget {
        padding: 20px;
    }
    /* Additional mobile overrides for typography and UI */
    .tour-intro h2,
    .section-header h2,
    .widget .line-title .h3-title {
        font-size: 26px;
    }
    .tours-intro h1 {
        font-size: 30px;
    }
    .tours-intro p,
    .tour-intro p,
    .section-header p {
        font-size: 16px;
    }
    .find-tour-form .form-input {
        font-size: 16px;
        height: 48px;
    }
    .find-now-btn {
        font-size: 16px !important;
        height: 48px !important;
    }
    .faq-question {
        padding: 16px;
    }
    .widget {
        padding: 22px;
    }
}

/* ==========================================
   TOUR GRID INTRO STYLES
   ========================================== */
.tours-intro {
    padding: 40px 0 30px 0;
    text-align: center;
}
.tours-intro h1 {
    color: #2d1b0f;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 25px;
}
.tours-intro p {
    color: #5a4a3a;
    font-size: 18px;
    line-height: 1.9;
    max-width: 850px;
    margin: 0 auto 18px;
}
.tours-intro a {
    color: #c79a6e;
    font-weight: 600;
    text-decoration: none;
}
.tours-intro a:hover {
    text-decoration: underline;
}

/* ==========================================
   SECTION HEADERS
   ========================================== */
.section-header {
    padding: 40px 0 20px 0;
}
.section-header h2 {
    color: #2d1b0f;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 12px;
}
.section-header p {
    color: #5a4a3a;
    font-size: 16px;
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto;
}
.section-header .section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #c79a6e, #b8864b);
    margin: 15px auto 20px;
    border-radius: 2px;
}

/* ==========================================
   TOUR CARD STYLES
   ========================================== */
.tour-item .tour-content .tour-description {
    color: #6b5a4a;
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 8px 0 10px;
}
.tour-item .tour-content .tour-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.tour-item .tour-content .tour-meta span {
    color: #5a4a3a;
    font-size: 0.85rem;
}
.tour-item .tour-content .tour-meta span i {
    color: #c79a6e;
    margin-right: 5px;
}
.tour-item .tour-content .tour-duration {
    display: none;
}

/* ==========================================
   BADGE STYLES (Grouped)
   ========================================== */
.badge-bestseller,
.badge-popular,
.badge-luxury {
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}
.badge-bestseller { background: #e74c3c; }
.badge-popular    { background: #ff6b35; }
.badge-luxury     { background: #c79a6e; }

/* ==========================================
   TOUR PRICE
   ========================================== */
.tour-item .tour-content .tour-price {
    font-size: 1rem;
    font-weight: 600;
    color: #2d1b0f;
}
.tour-item .tour-content .tour-price span {
    color: #c79a6e;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Hide wishlist heart */
.add-wishlist {
    display: none !important;
}

/* ==========================================
   RESPONSIVE - TOUR GRID (extra small)
   ========================================== */
@media (max-width: 576px) {
    .tours-intro h1 {
        font-size: 1.8rem;
    }
    .tours-intro p {
        font-size: 16px;
    }
    .section-header h2 {
        font-size: 1.5rem;
    }
}

/* ==========================================
   DISCOUNT LABEL VARIATIONS
   ========================================== */
.discount-label.best-seller {
    background: #e74c3c;
}
.discount-label.popular {
    background: #1A6B84;
}
.discount-label.luxury {
    background: #c49a6c;
}
.discount-label.one-way {
    background: #9b59b6;
}
.discount-label.grand-tour {
    background: #2c3e50;
}