:root {
    --pro-blue: #004a99;
    --action-green: #2ecc71;
    --dark-bg: #0a0a0a;
    --oswald: 'Oswald', sans-serif;
    --jakarta: 'Plus Jakarta Sans', sans-serif;
}

body { font-family: var(--jakarta); margin: 0; padding: 0; scroll-behavior: smooth; background-color: #fff; }

.top-bar { background: var(--pro-blue); color: white; text-align: center; padding: 12px; font-family: var(--oswald); font-weight: bold; font-size: 14px; }

header { display: flex; justify-content: space-between; align-items: center; padding: 15px 8%; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid rgba(0,0,0,0.05); }
.main-logo { height: 65px; width: auto; }

nav a { text-decoration: none; color: #111; margin-left: 25px; font-family: var(--oswald); font-weight: 700; font-size: 14px; }
.book-btn { background: var(--action-green); color: white !important; padding: 10px 22px; border-radius: 50px; }

/* HERO SECTION - Uses your specific GitHub filename */
.hero { 
    height: 60vh; 
    background-image: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('Tallahassee%20Skyline.png'); 
    background-size: cover; 
    background-position: center; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    color: white; 
}
.hero h1 { font-family: var(--oswald); font-size: clamp(30px, 6vw, 70px); text-align: center; }

.section-title { text-align: center; font-family: var(--oswald); font-size: 42px; margin: 80px 0 40px; }
.service-container { display: flex; justify-content: space-between; gap: 30px; padding: 0 8%; flex-wrap: wrap; }
.service-col { flex: 1; min-width: 300px; padding: 40px; background: #fff; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.04); transition: 0.3s; }
.service-col h3 { font-family: var(--oswald); color: var(--pro-blue); border-bottom: 3px solid var(--action-green); display: inline-block; }
.service-col ul { list-style: none; padding: 0; margin-top: 20px; }
.service-col li { padding: 10px 0; border-bottom: 1px solid #f8f8f8; font-weight: 500; }

.motto-box { text-align: center; padding: 100px 5%; background: #fbfbfb; }
.motto-box h2 { font-family: var(--oswald); font-size: 32px; font-style: italic; color: var(--pro-blue); opacity: 0.8; }

.about-section { padding: 100px 10%; text-align: center; }
.about-content { max-width: 900px; margin: 0 auto; font-size: 19px; line-height: 1.8; }

.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; padding: 0 8% 80px; }
.faq-item { background: #fff; padding: 30px; border-radius: 15px; border: 1px solid #eee; }
.faq-item h4 { font-family: var(--oswald); color: var(--pro-blue); }

.modern-form-section { padding: 100px 8%; background: #f0f2f5; display: flex; justify-content: center; }
.glass-form-card { background: #fff; padding: 60px; border-radius: 30px; box-shadow: 0 30px 60px rgba(0,0,0,0.1); width: 100%; max-width: 800px; text-align: center; }
.form-title { font-family: var(--oswald); font-size: 36px; }

.modern-booking-form { display: flex; flex-direction: column; gap: 20px; }
.input-group { display: flex; gap: 20px; }
.input-group input, .full-width, textarea { padding: 18px; border: 2px solid #f0f0f0; border-radius: 12px; font-size: 16px; background: #fafafa; }

.date-selection { text-align: left; margin-top: 10px; }
.date-selection label { display: block; margin-bottom: 10px; font-weight: 600; }

.neo-submit-btn-link { 
    display: block; text-decoration: none; background: var(--dark-bg); color: white; padding: 20px; border-radius: 12px; font-family: var(--oswald); font-weight: 700; font-size: 18px; text-align: center; transition: 0.3s; 
}
.neo-submit-btn-link:hover { background: var(--action-green); transform: translateY(-3px); }

.modern-contact-links { margin-top: 40px; display: flex; justify-content: center; gap: 15px; }
.pill-btn { text-decoration: none; color: #111; border: 1px solid #ddd; padding: 14px 35px; border-radius: 50px; font-weight: 600; }

footer { background: var(--dark-bg); color: white; padding: 80px 8% 30px; }
.footer-main { display: flex; justify-content: space-between; border-bottom: 1px solid #222; padding-bottom: 50px; }
.footer-logo { height: 50px; }
.footer-bottom { text-align: center; padding-top: 30px; font-size: 13px; color: #555; }

@media (max-width: 768px) { .input-group { flex-direction: column; } }