/* --- RESET & BASIC STYLES --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Raleway', sans-serif;
    color: #585858;
    line-height: 1.7;
    font-size: 16px;
    background-color: #ffffff;
}

/* Links: Underlined, Bold, Blue (Applied to content) */
.content a, footer a {
    text-decoration: underline;
    color: #0056b3;
    font-weight: 700;
    transition: color 0.3s ease;
}

.content a:hover, footer a:hover {
    color: #003d82;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- GRID SYSTEM --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 20px 0;
}
    
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

[class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}

/* Responsive Columns */
@media (min-width: 768px) {
    .col-3 { width: 25%; }
    .col-4 { width: 33.333%; }
    .col-5 { width: 41.666%; } 
    .col-6 { width: 50%; }
    .col-7 { width: 58.333%; } 
    .col-8 { width: 66.666%; }
    .col-9 { width: 75%; }
    .col-12 { width: 100%; }
}

@media (max-width: 767px) {
    .row { flex-direction: column; }
}

/* --- CONTENT STYLING --- */
h1, h2 {
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    text-transform: none;
}
h3 { font-size: 20px; font-weight: 700; margin-bottom: 15px; color: #333; }

h1 { font-size: 32px; }
h2 { font-size: 24px; }

.text-center { text-align: center; }
.text-right { text-align: right; }
    
hr {
    border: 0;
    border-top: 1px solid #eaeaea;
    margin: 20px 0;
}

ul.benefits-list {
    list-style: none;
}
    
ul.benefits-list li {
    margin-bottom: 10px;
}

.highlight-red { color: #ff0000; }
.highlight-black { color: #000000; }

/* Hero Text Larger */
.hero-text {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
}

iframe {
    width: 100%;
    display: block;
}
    
/* --- ACCORDION STYLING (FAQ) --- */
.qode-accordion-holder {
    border: 1px solid #eee;
    margin-bottom: 20px;
}
.qode-title-holder {
    cursor: pointer;
    padding: 15px;
    background-color: #f7f7f7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #eee;
}
.qode-title-holder:last-of-type {
    border-bottom: none;
}
.qode-accordion-mark {
    font-size: 12px;
    color: #333;
}
.qode-accordion-content {
    display: none; /* Hidden by default */
    padding: 15px;
    background-color: #fff;
    border-top: 1px solid #eee;
}
.qode-accordion-content p {
    margin: 0;
    padding: 0;
}
.qode-accordion-content.active {
    display: block;
}

/* --- RENTAL PAGE SPECIFIC STYLES --- */

/* Text & Colors */
.rental-blue-span { color: #1eaef2; font-weight: 700; }
.price-text { color: black; font-weight: 700; margin-bottom: 5px; }

/* Section: Title */
#first-title {
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #bfbfbf;
    margin-top: 20px;
}

#first-title h2 {
    color: #1eaef2;
    font-size: 24px;
}

/* Section: Intro Content (Level 1) */
#content-level-1 {
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    gap: 30px;
}

/* FIX: Image now uses object-fit: contain to ensure full image visibility and height: auto to maintain aspect ratio */
#content-lvl1-image {
    width: 100%;
    height: auto;
    object-fit: contain; 
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

#content-lvl1-text {
    text-align: justify;
    font-size: 16px;
}

#content-lvl1-text span {
    color: #1eaef2;
    font-weight: 700;
}

/* Section: Bikes (Level 2) */
#content-level-2 {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 40px;
}

.content-lvl {
    text-align: -webkit-center;
    text-align: center;
    border-bottom: 1px solid #bfbfbf;
    padding-bottom: 40px;
}

.content-lvl2-text-wrapper {
    margin: 20px 0;
}

.content-lvl2-text-wrapper h1 {
    color: #1eaef2;
    font-size: 24px;
    margin-bottom: 15px;
}

.content-lvl2-text-wrapper h2 {
    font-weight: 500;
    font-size: 18px;
    margin: 5px 0;
}

/* Specific Images and Slider Container */
/* FIX: Removed min-height to allow natural scaling, and added object-fit: contain to prevent stretching/cropping */
.dimension-image {
    width: 100%;
    max-width: 571px;
    height: auto; /* Ensures natural height is used */
    object-fit: contain; /* Prevents cropping and stretching */
    display: block;
    margin: 0 auto;
}

/* Interactive Buttons */
.aspect-button {
    background-color: #081F2D;
    border-radius: 29px;
    border: 1px solid #858585;
    color: white;
    font-size: 16px;
    padding: 10px 65px;
    margin-top: 20px;
    cursor: pointer;
    transition: 0.3s;
    font-family: inherit;
}

.aspect-button:hover {
    background-color: white;
    color: #081F2D;
    border-color: #081F2D;
}

.info-buttons {
    background-color: #94be11;
    border-radius: 40px;
    padding: 7px 20px;
    color: white;
    font-weight: 500;
    margin: 10px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid #94be11;
    max-width: 300px;
}

.info-buttons:hover {
    background-color: white;
    color: #081F2D;
}

.info-buttons p {
    font-size: 16px;
    margin: 0;
}

/* Dropdown Content */
.dotari {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

.dotari h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #1eaef2;
}

/* Section: FAQ (Level 3) */
#content-level-3 {
    padding: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

#lvl3-title {
    border-bottom: 1px solid #bfbfbf;
    border-top: 1px solid #bfbfbf;
    text-align: center;
    font-size: 25px;
    color: #5f5f5f;
    padding: 10px;
    margin-bottom: 20px;
}

.drop-settings {
    background-color: #94be11;
    padding: 15px 20px;
    border-radius: 50px;
    color: white;
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid #94be11;
    margin-bottom: 10px;
}

.drop-settings:hover {
    background-color: white;
    color: #081F2D;
}

.drop-settings h3 {
    margin: 0;
    color: inherit;
    font-size: 20px;
}

/* Utilities */
.d-none {
    animation: slideaway 2000ms;
    display: none;
    opacity: 0;
}

@keyframes slideaway {
    from { display: block; opacity: 1; }
    to { transform: translateY(40px); opacity: 0; }
}

[id^="drop-content"] {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 15px;
}

#drop-content2 ol {
    margin-left: 20px;
    padding: 0;
}

#drop-content2 li {
    margin-bottom: 10px;
}

/* --- SLIDER STYLES --- */
.slider {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  margin: 0 auto;
}

.slider .track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.slider .track::-webkit-scrollbar { display: none; }

.slider .slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* All images inside the slider */
.slider img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  display: block;
}

.slider .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255,255,255,0.92);
  border: 0;
  font-size: 2rem;
  line-height: 1;
  padding: .1rem .6rem;
  cursor: pointer;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
}
.slider .prev { left: 8px; }
.slider .next { right: 8px; }


/* --- DESKTOP RENTAL OVERRIDES (min-width: 1000px) --- */
@media (min-width:1000px) {
    #content-level-1 {
        flex-direction: row;
        margin: 20px auto;
        max-width: 1300px;
        align-items: center;
    }
    
    #content-lvl1-image {
        width: 50%;
        height: auto;
        max-height: 500px;
    }

    #content-lvl1-text {
        width: 50%;
        font-size: 18px;
        padding: 0 30px;
    }

    #content-level-2 {
        flex-direction: row;
        justify-content: center;
        max-width: 1400px;
        margin: 0 auto;
    }

    .content-lvl {
        width: 50%;
        border-bottom: none;
        border-right: 1px solid #eee;
        padding: 20px 40px;
    }
    
    .content-lvl:last-child {
        border-right: none;
    }

    #first-title h2 {
        font-size: 32px;
    }

    .aspect-button {
        font-size: 20px;
        padding: 15px 85px;
    }
}