/* 
   Roadtrip Rental Center - Main CSS
   This file contains all the main styling for the website
*/

/* === Root Variables === */
:root {
    --primary-color: #ff6b35; /* Warm orange - primary */
    --secondary-color: #2ec4b6; /* Teal - secondary */
    --accent-color: #ff9e00; /* Golden yellow - accent */
    --dark-color: #343a40; /* Dark gray for text */
    --light-color: #f8f9fa; /* Light gray background */
    
    --primary-dark: #e24e17;
    --primary-light: #ff8c61;
    --secondary-dark: #1a9d91;
    --secondary-light: #4aeadc;
    --accent-dark: #cc7e00;
    --accent-light: #ffb73f;
}

/* === Global Styles === */
body {
    font-family: 'Raleway', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

section {
    padding: 5rem 0;
}

.section-title {
    margin-bottom: 3rem;
}

.breadcrumb-container {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.breadcrumb-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* === Navigation === */
.site-header {
    background-color: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.nav-link {
    color: var(--dark-color);
    font-weight: 600;
    margin: 0 0.5rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* === Hero Section === */
.hero-section {
    padding: 6rem 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../RET_images/hero-pattern.webp') repeat;
    opacity: 0.05;
    z-index: 0;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.hero-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* === About Section === */
.about-section {
    background-color: #fff;
}

.about-feature {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-feature i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* === Services Section === */
.services-section {
    background-color: #f9f9f9;
}

.service-item {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-item img {
    height: 240px;
    object-fit: cover;
}

.service-item h4 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--primary-color);
}

.service-item p {
    padding: 0 1.5rem;
}

.service-item ul {
    list-style-type: none;
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

.service-item ul li {
    padding: 0.3rem 0;
}

.service-item ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

.service-item .price {
    background-color: var(--secondary-color);
    color: #fff;
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    display: inline-block;
    margin: 1rem 1.5rem 1.5rem;
    border-radius: 50px;
}

/* === Features Section === */
.features-section {
    background-color: #fff;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

/* === Price Plan Section === */
.priceplan-section {
    background-color: #f9f9f9;
}

.price-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.price-card.featured::before {
    content: 'BEST VALUE';
    position: absolute;
    top: 30px;
    right: -30px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 700;
}

.price-card h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.price-card ul {
    list-style-type: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.price-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.price-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

.price-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* === Team Section === */
.team-section {
    background-color: #fff;
}

.team-member {
    text-align: center;
    margin-bottom: 2rem;
}

.member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 5px solid #f9f9f9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    margin-bottom: 0.3rem;
    color: var(--primary-color);
}

.team-member p {
    color: var(--secondary-color);
    font-weight: 600;
}

/* === Reviews Section === */
.reviews-section {
    background-color: #f9f9f9;
    position: relative;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../RET_images/quote-pattern.webp') repeat;
    opacity: 0.05;
    z-index: 0;
}

.reviews-swiper {
    padding-bottom: 50px;
}

.review-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.review-item .stars {
    color: #FFD700;
    margin-bottom: 1rem;
}

.review-item p {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.review-item h5 {
    font-weight: 600;
    color: var(--primary-color);
}

/* === Core Info Section === */
.coreinfo-section {
    background-color: #fff;
}

.coreinfo-item {
    text-align: center;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.coreinfo-item:hover {
    transform: translateY(-5px);
}

.coreinfo-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.coreinfo-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* === Blog Section === */
.blog-section {
    background-color: #f9f9f9;
}

.blog-item {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-item:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.blog-content a {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
}

/* === FAQ Section === */
.faq-section {
    background-color: #fff;
}

.accordion-item {
    margin-bottom: 1rem;
    border: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    padding: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-light);
    color: #fff;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.1);
}

.accordion-body {
    padding: 1.5rem;
}

/* === Gallery Section === */
.gallery-section {
    background-color: #f9f9f9;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.gallery-img {
    border-radius: 10px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    height: 250px;
    object-fit: cover;
}

.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* === Contact Section === */
.contact-section {
    background-color: #fff;
}

.contact-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-item i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.form-control {
    padding: 0.75rem;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

/* === Footer === */
.site-footer {
    background-color: var(--dark-color);
    color: #fff;
    padding: 4rem 0 2rem;
}

.site-footer h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.footer-links {
    list-style-type: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ccc;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.site-footer hr {
    margin: 2rem 0;
    background-color: rgba(255, 255, 255, 0.1);
}

#site-copyright {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: #999;
}

/* === Space Page === */
#space {
    min-height: 500px;
    background-color: #f9f9f9;
    border-radius: 10px;
    margin: 3rem 0;
}

/* === Additional Pages === */
.add-page-section {
    padding: 5rem 0;
}

.add-page-section:nth-child(odd) {
    background-color: #f9f9f9;
}

.add-page-section:nth-child(even) {
    background-color: #fff;
}

.add-page-item {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.add-page-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.add-page-item img {
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.add-page-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.add-page-item h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.add-page-item.testimonial {
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

/* Navigation adjustments for additional pages */
body:not(.homepage) .site-header {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
} 