:root {
    --sea-blue: #00a8cc;
    --sun-orange: #ff9f43;
    --white: #ffffff;
    --light-gray: #f7f9fc;
    --text: #2d3436;
    
    --font-head: 'Fredoka', sans-serif;
    --font-body: 'Nunito', sans-serif;
    
    --radius: 15px;
    --shadow: 0 5px 15px rgba(0,0,0,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--light-gray);
    color: var(--text);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; border-radius: var(--radius); }

.container { width: 90%; max-width: 1100px; margin: 0 auto; }

/* Top Strip */
.top-strip { background-color: var(--sun-orange); color: #fff; font-weight: bold; padding: 5px 0; font-size: 0.9rem; }
.flex-strip { display: flex; justify-content: space-between; }
.contact-mini a { color: #fff; }

/* Header */
.holiday-header { background-color: var(--white); padding: 15px 0; box-shadow: var(--shadow); position: sticky; top: 0; z-index: 1000; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-size: 1.8rem; color: var(--sea-blue); }
.orange-dot { color: var(--sun-orange); }
.icon { font-size: 1.5rem; margin-left: 5px; }

.top-nav ul { display: flex; gap: 20px; align-items: center; }
.top-nav a { font-weight: 700; color: var(--text); font-size: 1rem; }
.top-nav a:hover, .top-nav a.active { color: var(--sea-blue); }

.btn-orange { background-color: var(--sun-orange); color: var(--white) !important; padding: 10px 20px; border-radius: 50px; font-weight: bold; box-shadow: 0 3px 10px rgba(255, 159, 67, 0.4); }
.btn-orange:hover { transform: translateY(-2px); background-color: #ff8c1a; }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.mobile-toggle span { width: 25px; height: 3px; background-color: var(--sea-blue); border-radius: 2px; }

/* Mobile Menu */
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 250px; height: 100%;
    background-color: var(--white); z-index: 2000;
    display: flex; flex-direction: column; padding: 40px; gap: 20px;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1); transition: 0.3s ease; border-left: 5px solid var(--sun-orange);
}
.mobile-menu.active { right: 0; }
.close-menu { align-self: flex-end; font-size: 1.5rem; background: none; border: none; cursor: pointer; color: var(--sea-blue); }
.mobile-menu a { font-weight: 700; font-size: 1.1rem; color: var(--text); border-bottom: 1px solid #eee; padding-bottom: 10px; }

/* Hero */
.hero-holiday {
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-content { background-color: rgba(255,255,255,0.9); padding: 40px; border-radius: var(--radius); max-width: 800px; box-shadow: var(--shadow); }
.hero-content h1 { font-family: var(--font-head); color: var(--sea-blue); font-size: 2.5rem; margin-bottom: 10px; }
.hero-content p { font-size: 1.2rem; color: #555; margin-bottom: 30px; }

.search-box { display: flex; gap: 15px; flex-wrap: wrap; justify-content: center; }
.search-item { flex: 1; min-width: 150px; text-align: left; }
.search-item label { display: block; font-weight: bold; font-size: 0.8rem; color: var(--text); margin-bottom: 5px; }
.search-item select, .search-item input { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 8px; font-family: var(--font-body); }
.btn-search { background-color: var(--sea-blue); color: #fff; border: none; padding: 0 25px; border-radius: 8px; font-weight: bold; cursor: pointer; margin-top: 20px; }
.btn-search:hover { background-color: #008caf; }

/* Cars Grid */
.section-padding { padding: 60px 0; }
.section-head { text-align: center; margin-bottom: 40px; }
.section-head h2 { font-family: var(--font-head); font-size: 2.2rem; color: var(--sea-blue); }

.car-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.car-card { background-color: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: relative; transition: 0.3s; }
.car-card:hover { transform: translateY(-5px); }
.tag { position: absolute; top: 15px; left: 15px; background-color: var(--sun-orange); color: #fff; padding: 5px 10px; border-radius: 20px; font-weight: bold; font-size: 0.8rem; }
.car-card img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 20px; }
.card-body h3 { font-family: var(--font-head); font-size: 1.4rem; margin-bottom: 10px; }
.features { display: flex; gap: 10px; font-size: 0.9rem; color: #666; margin-bottom: 20px; }
.price-row { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #eee; padding-top: 15px; }
.price { color: var(--sea-blue); font-weight: bold; font-size: 1.5rem; font-family: var(--font-head); }
.price small { font-size: 0.9rem; color: #888; }
.btn-book { background-color: var(--text); color: #fff; padding: 8px 20px; border-radius: 20px; font-weight: bold; }

/* About */
.page-title { text-align: center; margin-bottom: 50px; }
.page-title h1 { font-family: var(--font-head); color: var(--sun-orange); font-size: 2.5rem; }

.fleet-list { display: flex; flex-direction: column; gap: 30px; }
.fleet-row { display: flex; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); align-items: center; }
.fleet-img { width: 40%; }
.fleet-img img { height: 100%; border-radius: 0; }
.fleet-desc { padding: 30px; width: 60%; }
.fleet-desc h3 { color: var(--sea-blue); font-family: var(--font-head); margin-bottom: 10px; }
.badge { display: inline-block; background: #eef; color: var(--sea-blue); padding: 5px 10px; border-radius: 5px; font-weight: bold; font-size: 0.9rem; margin-top: 10px; }

/* Testimonials */
.review-bubbles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.bubble { background: var(--white); padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow); text-align: center; }
.bubble.orange-bg { background-color: #fff8f0; border: 2px solid var(--sun-orange); }
.stars { color: #f1c40f; font-size: 1.2rem; margin-bottom: 15px; }
.user { margin-top: 20px; font-size: 0.9rem; }
.user strong { display: block; color: var(--sea-blue); }

/* Contact */
.contact-box { background: var(--white); padding: 50px; border-radius: var(--radius); box-shadow: var(--shadow); display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; }
.contact-left h2 { font-family: var(--font-head); color: var(--sea-blue); }
.wa-btn { margin: 20px 0; }
.wa-btn a { background: #25d366; color: #fff; padding: 10px 20px; border-radius: 20px; font-weight: bold; display: inline-block; }
.holiday-form .form-group { margin-bottom: 15px; }
.holiday-form label { display: block; font-weight: bold; margin-bottom: 5px; }
.holiday-form input, .holiday-form textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 8px; font-family: var(--font-body); }
.submit-btn { width: 100%; padding: 15px; background-color: var(--sun-orange); color: #fff; border: none; border-radius: 8px; font-weight: bold; cursor: pointer; transition: 0.3s; }
.submit-btn:hover { background-color: #e68a35; }

/* Legal */
.rules-content { max-width: 800px; margin: 0 auto; background: var(--white); padding: 50px; border-radius: var(--radius); box-shadow: var(--shadow); }
.rules-content h1 { font-family: var(--font-head); color: var(--text); }
.divider-blue { height: 4px; width: 60px; background: var(--sea-blue); margin: 20px 0; }
.rules-content h3 { color: var(--sea-blue); margin-top: 30px; margin-bottom: 10px; }

/* Footer */
.holiday-footer { background-color: var(--sea-blue); color: var(--white); padding: 40px 0; margin-top: auto; }
.footer-flex { text-align: center; }
.f-brand { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 10px; }
.f-links a { color: #cceeff; margin: 0 10px; font-weight: bold; }
.copyright { margin-top: 20px; font-size: 0.8rem; opacity: 0.8; }

@media (max-width: 900px) {
    .top-nav { display: none; }
    .mobile-toggle { display: flex; }
    .hero-content { padding: 20px; }
    .search-box { flex-direction: column; }
    .car-grid, .review-bubbles, .contact-box { grid-template-columns: 1fr; }
    .fleet-row { flex-direction: column; }
    .fleet-img, .fleet-desc { width: 100%; }
}