/* BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #fff;
    color: #333;
}

/* HEADER */
.top-nav {
    background: #000;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 4px solid #C8102E;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container svg {
    display: block;
    height: 28px;
    width: auto;
}

.top-nav-links {
    display: flex;
    gap: 25px;
}

.top-nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
}

.top-nav-links a:hover {
    text-decoration: underline;
}

/* MAIN CONTENT */
main {
    min-height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    text-align: center;
}

.booking-card {
    background: #F7F7F7;
    padding: 50px 60px;
    border-radius: 4px;
    border: 1px solid #E0E0E0;
    max-width: 850px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.hero-h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.hero-h2 {
    font-size: 1.8rem;
    color: #C8102E;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.separator {
    width: 60px;
    height: 4px;
    background: #C8102E;
    margin: 20px auto;
}

.desc {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.5;
}

.security-notice {
    background-color: #e9ecef;
    border-left: 4px solid #333;
    padding: 15px 20px;
    margin: 25px 0;
    text-align: left;
    font-size: 0.95rem;
}

.main-btn {
    background: #C8102E;
    color: #fff;
    border: none;
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
}

.main-btn:hover {
    background: #A60D26;
}

/* FOOTER */
footer {
    background: #212333;
    color: #BCBCBC;
    font-size: 13px;
    padding: 50px 5% 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #BCBCBC;
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: #fff;
}

.app-stores {
    margin-top: 20px;
    display: flex;
    gap: 12px;
}

.app-stores img {
    height: 40px;
}

.feedback-btn {
    border: 1px solid #fff;
    padding: 10px 20px;
    margin-top: 15px;
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}

.footer-bottom {
    background: #000;
    padding: 30px 5%;
    text-align: center;
}

.bottom-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 8px;
    font-size: 12px;
}
