
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Montserrat:wght@300;400;600&display=swap');

:root {
    --bg-color: #0d0d0d;
    --text-color: #e0e0e0;
    --gold: #c5a059;
    --dark-gold: #9e7f45;
    --light-bg: #1a1a1a;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--gold);
}

/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: rgba(13, 13, 13, 0.98);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.logo-img {
    max-height: 30px;
    transition: transform 0.3s;
}
.logo-img:hover {
    transform: scale(1.05);
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--gold);
}

.nav-links a.nav-btn {
    background-color: var(--gold);
    color: #000 !important;
    padding: 10px 15px;
    border-radius: 4px;
    font-weight: 600;
}
.nav-links a.nav-btn:hover {
    background-color: var(--dark-gold);
}

.lang-switch a { color: #888; }
.lang-switch a.active { color: #fff; font-weight: bold; }

/* Mobile Menu Toggle */
#menu-toggle { display: none; }
.menu-icon { display: none; font-size: 2rem; color: var(--gold); cursor: pointer; }

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4)), url('../images/hero_bg.png') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}
.hero h1 { font-size: 4.5rem; margin-bottom: 20px; color: #fff; text-transform: uppercase; letter-spacing: 2px; }
.hero p { font-size: 1.3rem; margin-bottom: 40px; max-width: 700px; }

/* Personal Quote Block */
.quote-section {
    background-color: var(--light-bg);
    padding: 70px 20px;
    text-align: center;
    border-bottom: 1px solid #333;
}
.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-style: italic;
    color: var(--gold);
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Main Content */
.container {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--gold);
    color: #000;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    text-align: center;
}
.btn:hover { background-color: var(--dark-gold); }
.btn-small { padding: 10px 20px; font-size: 0.85rem; margin-top: 15px; }

/* Car Details */
.car-details { display: flex; flex-wrap: wrap; gap: 40px; margin-top: 40px; }
.car-text { flex: 1; min-width: 300px; }
.car-text p { margin-bottom: 20px; font-size: 1.1rem; }
.car-text ul { list-style: none; }
.car-text li { padding: 12px 0; border-bottom: 1px solid #333; }
.car-text li strong { color: var(--gold); margin-right: 10px; }
.car-images { flex: 1; min-width: 300px; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.car-images img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; border-radius: 4px; border: 1px solid #333; }

/* Service Grid Layouts */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.card { background-color: var(--light-bg); border-top: 3px solid var(--gold); text-align: left; transition: transform 0.3s; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-10px); }
.card img { width: 100%; height: 220px; object-fit: cover; }
.card-content { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; }
.card h3 { margin-bottom: 15px; font-size: 1.5rem; }
.card p { margin-bottom: 20px; flex-grow: 1; }

/* Tours Package Vertical Layout */
.package-list { display: flex; flex-direction: column; gap: 40px; }
.package-row { display: flex; background: var(--light-bg); border-left: 4px solid var(--gold); overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
.package-row.reverse { flex-direction: row-reverse; border-left: none; border-right: 4px solid var(--gold); }
.package-row img { width: 45%; object-fit: cover; min-height: 350px; }
.package-info { padding: 40px; width: 55%; display: flex; flex-direction: column; justify-content: center; }
.package-info h3 { font-size: 2rem; margin-bottom: 15px; }
.package-info p { margin-bottom: 15px; font-size: 1.1rem; }
.package-info ul { list-style: none; margin-bottom: 25px; }
.package-info li { padding: 8px 0; color: #ccc; border-bottom: 1px solid #333; }
.package-info li i { color: var(--gold); margin-right: 10px; }
.package-info .btn { align-self: flex-start; }

/* Forms */
.contact-wrapper { display: flex; gap: 40px; flex-wrap: wrap; }
.contact-form, .contact-info { flex: 1; min-width: 300px; background: var(--light-bg); padding: 40px; border-top: 3px solid var(--gold); }
.booking-form { max-width: 800px; margin: 0 auto; background: var(--light-bg); padding: 50px; border-top: 3px solid var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; text-align: left; }
.form-group label { display: block; margin-bottom: 8px; color: var(--text-color); font-weight: 600; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 15px; background: #0d0d0d; border: 1px solid #333; color: #fff; border-radius: 4px; font-family: 'Montserrat', sans-serif; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--gold); }

/* Checkbox specific */
.checkbox-group { display: flex; align-items: center; gap: 12px; margin: 30px 0; font-size: 0.95rem; }
.checkbox-group input[type="checkbox"] { width: 20px; height: 20px; accent-color: var(--gold); cursor: pointer; }
.checkbox-group a { color: var(--gold); text-decoration: underline; }

.gallery-placeholder { background: #1a1a1a; border: 2px dashed #333; padding: 60px 20px; text-align: center; color: #888; }

/* WhatsApp Floating Button */
.whatsapp-float { position: fixed; bottom: 20px; right: 20px; background-color: #25d366; color: #FFF; border-radius: 50%; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0px 4px 15px rgba(0,0,0,0.5); z-index: 1000; transition: transform 0.3s, background-color 0.3s; }
.whatsapp-float:hover { transform: scale(1.1); background-color: #20b858; }
.whatsapp-float svg { fill: white; width: 35px; height: 35px; }

/* Footer */
footer { background-color: #050505; text-align: center; padding: 40px 20px; border-top: 1px solid #222; }
footer p { margin: 0; color: #888; }
footer a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
footer a:hover { color: #fff; text-decoration: underline; }

/* Responsive */
@media (max-width: 900px) {
    nav { flex-wrap: wrap; padding: 15px 20px; }
    .menu-icon { display: block; }
    .nav-links { display: none; width: 100%; flex-direction: column; text-align: center; margin-top: 15px; background: #111; padding: 20px 0; border-radius: 5px; }
    #menu-toggle:checked ~ .nav-links { display: flex; }
    .nav-links li { margin: 15px 0; }
    
    .hero h1 { font-size: 2.8rem; }
    .quote-text { font-size: 1.5rem; }
    
    .car-details { flex-direction: column; }
    .car-images { grid-template-columns: 1fr; }
    
    .package-row, .package-row.reverse { flex-direction: column; border-left: none; border-right: none; border-top: 4px solid var(--gold); }
    .package-row img, .package-row.reverse img { width: 100%; height: 250px; min-height: auto; }
    .package-info { width: 100%; padding: 25px 20px; }
    .package-info .btn { align-self: stretch; }

    .form-row { grid-template-columns: 1fr; gap: 0; }
    .booking-form { padding: 30px 20px; }
}
