body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #000;
    color: #fff;
}

/* Navigation */

.topnav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #111;
}

.logo-img {<link rel="icon" href="/favicon.ico" type="image/vnd.microsoft.icon">
    height: 80px;
}

.topnav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.topnav ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
}

.topnav ul li a:hover,
.topnav ul li a.active {
    color: #ffcc33;
}

/* Hero */

.hero {
    height: 80vh;
    background: radial-gradient(circle at top, #222 0%, #000 60%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 38px;
    color: #f5c542;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-block;
    background: #d4af37;
    padding: 12px 28px;
    color: #000;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}

/* Sections */

section {
    padding: 40px 20px;
    max-width: 1100px;
    margin: auto;
}

.why h2,
.page-header h1,
.highlight h2 {
    text-align: center;
    color: #d4af37;
    margin-bottom: 20px;
}

.page-header p,
.highlight p {
    text-align: center;
    color: #ccc;
}

/* Why grid */

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.card {
    background: #111;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #333;
}

.card h3 {
    color: #d4af37;
    margin-bottom: 10px;
}

/* Services */

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.service-card {
    background: #111;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #333;
}

.service-card h3 {
    color: #d4af37;
    margin-bottom: 10px;
}

/* About */

.about-section p {
    margin-bottom: 15px;
    color: #ccc;
}

/* Booking advanced */

.booking-advanced {
    max-width: 600px;
    margin: auto;
    padding: 30px;
    background: #000;
    color: #fff;
    border-radius: 10px;
    border: 1px solid #333;
}

.booking-advanced h2 {
    text-align: center;
    color: #d4af37;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 6px;
    color: #d4af37;
}

input, select {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: none;
    background: #111;
    color: #fff;
}

button {
    width: 100%;
    padding: 14px;
    margin-top: 10px;
    background: #d4af37;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    color: black;
    cursor: pointer;
}

button:hover {
    background: #b8922c;
}

.price-box {
    margin-top: 15px;
    padding: 15px;
    background: #111;
    border-left: 4px solid #d4af37;
    display: none;
}

.summary-box {
    margin-top: 25px;
    padding: 20px;
    background: #111;
    border-left: 4px solid #d4af37;
    display: none;
}

/* App style */

.app-container {
    width: 100%;
    max-width: 420px;
    margin: 60px auto;
    padding: 20px;
    background: #000;
    color: #fff;
    text-align: center;
    border-radius: 12px;
    border: 1px solid #333;
}

.app-subtitle {
    color: #ccc;
    margin-bottom: 20px;
}

.app-btn {
    width: 100%;
    padding: 18px;
    margin-top: 15px;
    background: #d4af37;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    color: black;
    font-weight: bold;
    cursor: pointer;
}

/* Footer */

footer {
    text-align: center;
    padding: 20px;
    background: #111;
    color: #777;
    font-size: 13px;
}
