:root {
    --primary-color: #FFC107;
    --secondary-color: #212121;
    --background-color: #FFF9E6;
    --text-color: #212121;
    --button-color: #FFFFFF;
    --border-color: #E0E0E0;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --card-radius: 15px;
}

/* CSS Reset/Normalization */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Merriweather", serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    flex: 1;
}

/* Header */
header {
    background-color: var(--background-color);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px var(--shadow-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-weight: 900;
    font-size: 24px;
    color: var(--secondary-color);
}

.logo span {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-item {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 700;
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: 14px;
}

.nav-item:hover {
    color: var(--primary-color);
}

.contact-text {
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
}

.contact-button {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 8px 16px;
    border-radius: var(--card-radius);
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s;
    text-transform: uppercase;
    font-size: 14px;
    display: inline-block;
}

.contact-button:hover {
    background-color: #FFB300;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px 0;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.hero-title .highlight {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 400;
}

.hero-button {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 10px 20px;
    border-radius: var(--card-radius);
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: background-color 0.3s;
    text-align: center;
    text-transform: uppercase;
    cursor: default;
}

.hero-button:hover {
    background-color: #FFB300;
}

.hero-image picture {
    display: block;
    max-width: 100%;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

/* Sections spacing (100px between blocks) */
.pricing-section,
.fleet-section,
.min-order,
.destinations-section,
.how-to-order-section {
    padding-top: 100px;
}

.pricing-section,
.destinations-section {
    padding-bottom: 40px;
}

.how-to-order-section {
    padding-bottom: 60px;
}

.fleet-section {
    padding: 40px 0;
    background-color: var(--background-color);
}

/* Pricing Section */
.section-title {
    font-size: 32px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-transform: uppercase;
}

.section-title .highlight { 
    color: var(--primary-color); 
}

.section-subtitle {
    text-align: center;
    color: #757575;
    margin-bottom: 40px;
    font-style: italic;
    font-weight: 400;
}

.pricing-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.pricing-card {
    background-color: var(--primary-color);
    padding: 25px;
    border-radius: var(--card-radius);
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-color);
    text-transform: uppercase;
}

.pricing-price {
    font-size: 28px;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.pricing-list { 
    list-style: none; 
    padding-left: 0;
}

.pricing-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    font-weight: 400;
    padding-left: 20px;
    position: relative;
}

.pricing-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Fleet Section */
.fleet-title {
    font-size: 32px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-transform: uppercase;
}

.fleet-title .highlight { 
    color: var(--primary-color); 
}

.fleet-subtitle {
    text-align: center;
    color: #757575;
    margin-bottom: 40px;
    font-style: italic;
    font-weight: 400;
}

.fleet-images {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.fleet-image {
    width: 300px;
    overflow: hidden;
    border-radius: var(--card-radius);
    max-width: 100%;
}

.fleet-image picture {
    display: block;
    height: 200px;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Minimum Order */
.min-order {
    background-color: var(--primary-color);
    padding: 40px 0;
    text-align: center;
    margin: 0 -20px;
}

.min-order-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.min-order-duration {
    font-size: 48px;
    font-weight: 900;
    color: var(--secondary-color);
    text-transform: uppercase;
}

/* Destinations */
.destinations-title {
    font-size: 32px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-transform: uppercase;
}

.destinations-title .highlight { 
    color: var(--primary-color); 
}

.destinations-subtitle {
    text-align: center;
    color: #757575;
    margin-bottom: 40px;
    font-style: italic;
    font-weight: 400;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.destination-card {
    background-color: var(--primary-color);
    border-radius: var(--card-radius);
    padding: 20px;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.destination-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.destination-price {
    font-size: 24px;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 0;
}

/* How to Order */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 40px auto;
}

.step-card {
    background: white;
    padding: 25px;
    border-radius: var(--card-radius);
    text-align: center;
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-card:focus-within { 
    outline: 2px solid var(--primary-color); 
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    font-weight: 900;
    font-size: 18px;
    margin: 0 auto 15px;
}

.step-card h3 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 20px;
}

.step-card p {
    color: #666;
    font-weight: 400;
}

/* Sidebar */
.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.3s;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.sidebar.open {
    width: 250px;
    display: flex;
}

.sidebar-content {
    margin-top: auto;
    width: 100%;
    padding: 20px;
}

.sidebar .closebtn {
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 36px;
    color: #aaa;
    text-decoration: none;
    z-index: 1001;
}

.sidebar-item {
    padding: 12px 20px 12px 32px;
    text-decoration: none;
    font-size: 20px;
    color: var(--secondary-color);
    display: block;
    font-weight: 700;
    transition: 0.2s;
    border-left: 4px solid transparent;
}

.sidebar-item:hover {
    background-color: #f5f5f5;
    border-left: 4px solid var(--primary-color);
}

.divider {
    border-top: 1px solid #e0e0e0;
    margin: 10px 0;
}

.sidebar-footer {
    padding: 20px 0 10px 0;
    margin-top: 0;
}

.sidebar-footer p {
    font-size: 14px;
    color: #666;
    margin: 5px 0;
}

.sidebar-header,
.contact-section {
    margin: 0;
}

.contact-section {
    margin-bottom: 10px;
}

.contact-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

/* Main content shift */
#main {
    transition: margin-right 0.3s;
}

.openbtn {
    font-size: 28px;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--secondary-color);
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 1001;
    display: none;
}

.openbtn:hover { 
    color: var(--primary-color); 
}

/* Footer */
footer {
    background-color: var(--background-color);
    padding: 40px 0;
    text-align: center;
    box-shadow: 0 -5px 15px var(--shadow-color);
    margin-top: auto;
}

.social-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.social-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s;
    font-size: 24px;
    font-weight: 700;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.copyright {
    font-size: 14px;
    color: #757575;
}

/* Media Queries */
@media (max-width: 1024px) {
    .pricing-cards {
        justify-content: center;
    }
    .steps-grid { 
        grid-template-columns: 1fr; 
    }
}

@media (max-width: 768px) {
    .openbtn { 
        display: block; 
    }
    header .nav-menu { 
        display: none; 
    }
    .hero { 
        flex-direction: column; 
        text-align: center; 
    }
    .hero-content { 
        order: 2; 
    }
    .hero-image { 
        order: 1; 
    }
    .pricing-cards { 
        flex-direction: column; 
    }
    .fleet-images, .destinations-grid { 
        justify-content: center; 
    }
    .fleet-image { 
        width: 100%; 
        max-width: 300px; 
    }
    .min-order { 
        margin: 0 -10px; 
    }
    .section-title, .fleet-title, .min-order-title, .destinations-title {
        font-size: 28px;
    }
    .hero-title {
        font-size: 32px;
    }
    
    /* Footer mobile */
    .social-icons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        justify-content: center;
        max-width: 300px;
        margin: 0 auto 20px;
    }
    
    /* Sidebar mobile adjustments */
    .sidebar {
        padding-top: 30px;
    }
    
    .sidebar .closebtn {
        top: 15px;
        left: 15px;
    }
    
    .sidebar-item {
        padding: 10px 20px 10px 32px;
        font-size: 18px;
    }
    
    .contact-title {
        font-size: 14px;
    }
    
    .sidebar-footer {
        padding: 15px 0 10px 0;
    }
}

@media (max-width: 480px) {
    .sidebar a { 
        font-size: 18px; 
        padding: 12px 20px 12px 32px; 
    }
    .hero-title {
        font-size: 28px;
    }
    .section-title, .fleet-title, .min-order-title, .destinations-title {
        font-size: 24px;
    }
    .social-icons {
        grid-template-columns: repeat(2, 1fr);
        max-width: 200px;
        gap: 15px;
    }
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card {
        min-width: 100%;
    }
}