@import url('../css2');
@import url('../css2-1');
.color{color: #293364; color: #018089; color: #ec9c3d; color: #f8bf16;}
* {padding: 0;margin: 0;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;-o-box-sizing: border-box;box-sizing: border-box;}
hr {margin-top: 20px;margin-bottom: 20px;}
.ecommerce {height: 100%;background-color: #eee;font-family: 'Montserrat', sans-serif;}


/***** Start Top header section *****/
/* General Styles */

:root {
  --primary-color: #A48111; /* New Gold */
  --secondary-color: #3a2d21; /* Dark Brown */
  --accent-color: #d9c080; /* Light Gold/Tan */
  --text-color: #5c5c5c;
  --heading-color: #3a2d21;
  --background-color: #fdfdfd;
  --light-background: #f8f6f3;
  --border-color: #e0e0e0;
  --border-radius: 8px;
  --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  --font-body: 'Roboto', sans-serif;
  --font-heading: 'Playfair Display', serif; /* New serif font */
}

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

body {
    font-family: var(--font-body, 'Helvetica Neue', Arial, sans-serif);
    line-height: 1.6;
    background-color: var(--background-color, #f9f9f9);
}

.container {
    max-width: 1200px;
    width: 95%;
    margin: 0 auto;
}

a {
    transition: color 0.3s ease, opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

ul {
    list-style: none;
}

/* Header Styles */
.site-header {
    background-color: #a48c02;
    color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.site-header a {
    color: #fff;
    text-decoration: none;
}

/* Header Top */
.header-top {
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-top .container,
.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-top .container {
    gap: 10px;
}

.contact-info a {
    margin-right: 20px;
}

.contact-info a i {
    margin-right: 8px;
}

.social-links a {
    margin-left: 18px;
    font-size: 16px;
}

/* Header Main */
.header-main .container {
    min-height: 90px;
}

.logo-image {
    display: block;
    height: 110px;
    width: auto;
}

/* Main Navigation */
.main-nav ul {
    display: flex;
}

.main-nav li {
    margin-left: 35px;
}

.main-nav a {
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px 0;
    position: relative;
    letter-spacing: 1px;
    font-size: 15px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a:focus::after {
    width: 100%;
}

/* Mobile Navigation Toggle */
.nav-toggle-checkbox {
    display: none;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger {
    display: block;
    position: relative;
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.2s ease-in-out;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.2s ease-in-out;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

/* === Tour Page Styles === */

.tour-page {
  color: var(--text-color);
  font-size: 17px;
  line-height: 1.8;
}

.tour-page h1, .tour-page h2, .tour-page h3, .tour-page h4 {
  font-family: var(--font-heading);
  color: var(--heading-color);
  font-weight: 700;
  line-height: 1.3;
}

.btn {
    display: block;
    text-align: center;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}
.btn-primary:hover {
    background-color: var(--secondary-color);
    color: white;
}
.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.page-container {
    padding-top: 60px;
    padding-bottom: 60px;
}
.tour-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

.tour-section { margin-bottom: 60px; }

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin: 0 auto 40px auto;
  padding-bottom: 15px;
  position: relative;
  display: block;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

.tour-sidebar .sticky-box {
  position: -webkit-sticky;
  position: sticky;
  top: 30px;
  padding: 30px;
  border-radius: var(--border-radius);
  background: var(--light-background);
  border: 1px solid var(--border-color);
}
.sidebar-title { font-size: 1.8rem; margin-bottom: 15px; text-align: center; }
.sidebar-price {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-align: center;
}
.sidebar-price strong {
    font-size: 2.8rem;
    color: var(--primary-color);
    font-family: var(--font-body);
}
.sidebar-info { margin-bottom: 30px; text-align: center; }
.tour-sidebar .btn { margin-bottom: 12px; }

.gallery-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.highlight-item {
    background-color: var(--background-color);
    padding: 20px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.itinerary-timeline {
    position: relative;
    padding-left: 40px;
    border-left: 3px solid var(--accent-color);
}
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-item::before {
    content: '';
    position: absolute;
    left: -49px;
    top: 5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 4px solid var(--background-color);
}
.day-title { font-size: 1.8rem; margin-bottom: 10px; color: var(--secondary-color); }
.day-meta { font-size: 0.9rem; color: var(--text-color); margin-bottom: 15px; font-style: italic; }

.inclusion-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
.inclusion-title { font-size: 1.6rem; margin-bottom: 20px; font-family: var(--font-heading); }
.inclusion-title.included { color: #28a745; }
.inclusion-title.excluded { color: #dc3545; }
.inclusion-list { list-style: none; padding: 0; }
.inclusion-list li { padding-left: 30px; position: relative; margin-bottom: 12px; }
.inclusion-list li::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 4px;
}
.included + .inclusion-list li::before { content: '\f00c'; color: #28a745; }
.excluded + .inclusion-list li::before { content: '\f00d'; color: #dc3545; }

.faq-item { border-bottom: 1px solid var(--border-color); margin-bottom: 10px; }
.faq-question {
    font-size: 1.15rem;
    font-weight: 500;
    font-family: var(--font-body);
    padding: 18px 45px 18px 15px;
    cursor: pointer;
    position: relative;
    list-style: none;
    color: var(--heading-color);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    color: var(--primary-color);
    font-size: 1rem;
}
.faq-item[open] .faq-question::after { transform: translateY(-50%) rotate(180deg); }
.faq-answer { padding: 0 15px 20px 15px; line-height: 1.7; }

.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.testimonial-item {
    background: var(--light-background);
    padding: 25px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
}
.testimonial-text { font-style: italic; margin-bottom: 15px; flex-grow: 1; }
.testimonial-author { font-weight: bold; color: var(--secondary-color); text-align: right; }
.testimonial-author span { display: block; font-weight: normal; font-size: 0.9em; color: var(--text-color); }
.read-more-reviews { text-align: center; margin-top: 40px; }
.read-more-reviews .btn { display: inline-block; width: auto; }

.new-tour-overview-section {
    padding: 40px 0;
    text-align: center;
    background: var(--light-background);
    border-bottom: 1px solid var(--border-color);
}
.overview-title-box {
    background-color: var(--primary-color);
    color: white;
    padding: 20px 30px;
    border-radius: var(--border-radius);
    display: inline-block;
    margin-bottom: 30px;
}
.overview-title-box h1 {
    color: white;
    font-size: 2.2rem;
    font-family: var(--font-body);
    font-weight: bold;
    margin: 0;
}
.overview-details-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 50px;
}
.overview-detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 150px;
    text-align: center;
}
.overview-detail-item i { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 10px; }
.overview-detail-item strong { font-weight: bold; color: var(--heading-color); font-size: 1.1rem; font-family: var(--font-body); }
.overview-detail-item span { color: var(--text-color); font-size: 1rem; }

/* === Footer Styles === */
footer {
    background-color: var(--secondary-color, #3a2d21);
    color: #ccc;
    padding: 60px 0 20px 0;
    font-size: 0.95rem;
}
.footer-logo { text-align: center; margin-bottom: 40px; }
.footer-logo img { max-width: 200px; height: auto; }
.footer-container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; margin-bottom: 40px; }
.footer-column { flex: 1; min-width: 220px; }
.footer-column h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
}
.footer-column ul a { color: #ccc; text-decoration: none; }
.footer-column ul a:hover { color: #fff; opacity: 1; }
.footer-column ul li { margin-bottom: 10px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 20px; text-align: center; }
.footer-bottom .social-icons { margin-bottom: 15px; }
.footer-bottom .social-icons a { color: #fff; font-size: 1.2rem; margin: 0 10px; }
.footer-bottom p { font-size: 0.9rem; }

/* === Back to Top Button === */
#scroll-top button {
    background-color: var(--primary-color);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

/* === Responsive Styles === */

@media (min-width: 992px) {
    .tour-layout { grid-template-columns: 2.5fr 1fr; }
}

@media (max-width: 992px) {
    .header-main { position: relative; }

    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid #fff;
        border-radius: 5px;
        width: 45px;
        height: 40px;
        padding: 0;
    }

    .nav-toggle-checkbox:checked ~ .nav-toggle .hamburger { background: transparent; }
    .nav-toggle-checkbox:checked ~ .nav-toggle .hamburger::before { transform: rotate(45deg) translate(5px, 6px); }
    .nav-toggle-checkbox:checked ~ .nav-toggle .hamburger::after { transform: rotate(-45deg) translate(5px, -6px); }
    
    .main-nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #a48c02;
        flex-direction: column;
        width: 100%;
        text-align: center;
        padding: 10px 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        z-index: 1000;
        border-top: 1px solid rgba(255,255,255,0.2);
    }

    .nav-toggle-checkbox:checked ~ ul#main-menu {
        display: flex;
    }

    .main-nav li { margin: 0; }
    .main-nav a { display: block; padding: 18px; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .main-nav li:last-child a { border-bottom: none; }
    .main-nav a::after { display: none; }

    .tour-sidebar .sticky-box { position: static; }
}

@media (max-width: 768px) {
    .header-top .container { justify-content: center; }
    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
    }
    .contact-info a { margin-right: 0; }
    .social-links { padding-top: 10px; }

    .section-title { font-size: 2rem; }
    .overview-title-box h1 { font-size: 1.8rem; }
    .overview-details-grid { gap: 30px; justify-content: space-around; }
    .overview-detail-item { flex: 1 1 40%; min-width: 120px; }

    .inclusion-grid { grid-template-columns: 1fr; }

    .footer-container { text-align: center; }
    .footer-column { min-width: 100%; }
}



/***** End NavBar header section *****/

/***** Start Our Services *****/
#service {margin-top: 30px;margin-bottom: 30px;}
#service .service-title {text-align: center;font-weight: bold;}
#service .service-box {text-align: center;margin-top: 40px;}
#service .service-box .service-item {margin-bottom: 30px;}
#service .service-box .icon i {font-size: 40px; color: #f8bf16;vertical-align: middle;}
#service .service-box .text {font-weight: bold;font-size: 16px;margin-top: 10px;}
/***** End Our Services *****/



/***** Start Our Tour Destination *****/
#P-tours h2 {font-weight: bold;}
#P-tours h2::after {content: "";display: block;clear: both;color: #f55d0b;border: 1px solid;max-width: 100px;margin: 0 auto;position: relative;top: 5px;border-width: 2px;}
#P-tours .DSF {margin-bottom: 40px;font-weight: bold;display: block;font-size: 14px;text-align: center;color: #000000;}
#P-tours .T-item {width: 100%;position: relative;clear: both;overflow: hidden;margin-bottom: 45px;}
#P-tours .T-item .T-img {height: 219px;}
#P-tours .T-item .T-img img {width: 100%;height: 100%;}
#P-tours .T-item .T-img span {display: block;text-align: center;position: relative;top: -25px;background-color: #ec8405;width: 165px;padding: 10px;border-radius: 65px;margin: 0 auto;-webkit-border-radius: 40px;-moz-border-radius: 40px;-ms-border-radius: 40px;border-radius: 40px;font-weight: bold;color: #383838;z-index: 1000;}
#P-tours .T-item .T-img span i {margin-right: 8px;color: #fff;}
#P-tours .T-box {background-color: #fff;padding: 20px;padding-bottom: 0;}
#P-tours .T-box h4 {font-size: 18px;font-weight: bold;margin-top: 25px;text-align: center;}
#P-tours .T-box h4 a {color: #293364;font-weight: bold;text-decoration: none;}
#P-tours .T-box .rating {overflow: hidden;border-top: 1px solid #f67103;margin-top: 20px;padding-top: 20px;}
#P-tours .T-box .rating ul:first-child {float: left;}
#P-tours .T-box .rating ul:last-child {float: right;color: #f8bf16;vertical-align: middle;}
#P-tours .T-box .rating ul li {display: inline-block;list-style: none;}
#P-tours .T-box .rating ul .CAT {font-weight: bold;font-size: 14px;}
#P-tours .T-box .details {width: 100%;}
#P-tours .T-box .details a {text-align: center;display: block;color: #000000;font-weight: bold;font-size: 15px;text-decoration: none;padding: 10px;border-top: 1px solid #ddd;}
#P-tours .T-box .details a:hover {background-color: #fb7602;}
/***** End Our Tour Destination *****/


/***** Start Our Morocco Tours *****/
#our-tours .content-title {padding-top: 40px;padding-bottom: 40px;color: #293364;font-weight: bold;font-size: 26px;}
#our-tours .T-item {width: 100%;position: relative;clear: both;overflow: hidden;margin-bottom: 45px;}
#our-tours .T-item .T-img {height: 219px;}
#our-tours .T-item .T-img img {width: 100%;height: 100%;}
#our-tours .T-item .T-img span {display: block;text-align: center;position: relative;top: -25px;background-color: #26bdf7;width: 165px;padding: 10px;margin: 0 auto;border-radius: 40px;-webkit-border-radius: 40px;-moz-border-radius: 40px;-ms-border-radius: 40px;font-weight: bold;color: #383838;z-index: 1000;}
#our-tours .T-item .T-img span i {margin-right: 8px;color: #fff;}
#our-tours .T-box {background-color: #fff;padding: 20px;padding-bottom: 0;}
#our-tours .T-box h4 {font-size: 18px;font-weight: bold;margin-top: 25px;text-align: center;}
#our-tours .T-box h4 a {color: #293364;font-weight: bold;text-decoration: none;}
#our-tours .T-box .rating {overflow: hidden;border-top: 1px solid #26bdf7;margin-top: 20px;padding-top: 20px;}
#our-tours .T-box .rating ul:first-child {float: left;}
#our-tours .T-box .rating ul:last-child {float: right;color: #f8bf16;vertical-align: middle;}
#our-tours .T-box .rating ul li {display: inline-block;list-style: none;}
#our-tours .T-box .rating ul .CAT {font-weight: bold;font-size: 14px;}
#our-tours .T-box .details {width: 100%;}
#our-tours .T-box .details a {text-align: center;display: block;color: #018089;font-weight: bold;font-size: 15px;text-decoration: none;padding: 10px;border-top: 1px solid #ddd;}
#our-tours .T-box .details a:hover {background-color: #f8bf16;}
/***** End Our Morocco Tours *****/






/***** Start Footer *****/

/* --- Footer --- */
.main-footer { 
    background-color: #0c1a29; /* A deep, professional blue */
    color: #ccc; 
    padding: 80px 0 30px; 
    font-size: 0.95rem;
    line-height: 1.8;
    font-family: 'Roboto', sans-serif;
}

.footer-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px; 
    margin-bottom: 50px; 
}

.footer-col h4 { 
    color: white; 
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 25px; 
    position: relative; 
    padding-bottom: 15px; 
    font-family: 'Playfair Display', serif;
}

.footer-col h4::after { 
    content: ''; 
    position: absolute; 
    left: 0; 
    bottom: 0; 
    width: 50px;
    height: 3px;
    background: #A48111; /* Primary accent color */
}

.footer-col .footer-heading-margin {
    margin-top: 30px;
}

.footer-col p { 
    color: #bbb; 
}

.footer-col ul { 
    list-style: none; 
    padding: 0;
}

.footer-col ul li { 
    margin-bottom: 15px; 
}

.footer-col ul li a { 
    color: #bbb; 
    transition: all 0.3s ease; 
    display: flex;
    align-items: center;
    text-decoration: none;
}

.footer-col ul li a:hover { 
    color: #A48111; /* Primary accent color */
    transform: translateX(5px);
}

.footer-col ul li i { 
    margin-right: 12px; 
    color: #A48111; /* Primary accent color */
    width: 20px; 
    text-align: center;
}

.footer-col .footer-social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-col .footer-social-links a {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-col .footer-social-links a:hover {
    background-color: #A48111; /* Primary accent color */
    color: #fff;
    transform: translateY(-4px);
}

.footer-bottom { 
    text-align: center; 
    padding-top: 30px; 
    border-top: 1px solid #444;
    font-size: 0.9rem; 
    color: #888; 
}

/* --- Call to Action Section --- */
.cta {
    background: #A48111; /* Primary accent color */
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    background-color: white;
    color: #A48111; /* Primary accent color */
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-cta:hover {
    background-color: #0c1a29; /* Deep blue from footer */
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}


/* --- Responsive Footer --- */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
/***** End Footer *****/




/***** Start Back to top Section *****/
#scroll-top {position: fixed;right: 30px;bottom: 12px;height: 40px;width: 40px;background-color: #fd6101;text-align: center;border-radius: 50%;z-index: 9;cursor: pointer;display: none;border: 1px solid #293364;}
#scroll-top i {padding-top: 9px;font-size: 22px;color: #f9f9f9;vertical-align: middle;}
#scroll-top i:hover {margin-bottom: 6px;transition: all .5s ease-in-out;}
/***** End Back to top Section *****/


/* CSS File or <style> Section */
body {
  font-family: 'Roboto', sans-serif; /* Default body font */
  font-size: 17px; /* Adjust your body text size as needed */
}

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif; /* Font for headings */
}

/* Example styles for headings and Font name */
h1 {
  font-size: 36px;
  font-weight: bold;
  color: #ff5722; /* Example color */
}

h2 {
  font-size: 28px;
  font-weight: bold;
  color: #333;
}

h3 {
  font-size: 22px;
  font-weight: bold;
}


/* Example styles for headings */





