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

html{
scroll-behavior:smooth;
}

body{
font-family:'Inter',sans-serif;
color:#1a1a1a;
line-height:1.7;
background:#ffffff;
}

.container{
width:90%;
max-width:1200px;
margin:0 auto;
}

.narrow{
max-width:800px;
margin:0 auto;
}

a{
text-decoration:none;
}

.hero{
min-height:100vh;
background:
linear-gradient(
rgba(0,0,0,0.45),
rgba(0,0,0,0.45)
),
url('https://images.unsplash.com/photo-1554797589-7241bb691973?auto=format&fit=crop&w=2200&q=80');

background-size:cover;
background-position:center;
color:white;
display:flex;
flex-direction:column;
}


.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:24px 5%;
}

.logo{
font-size:2rem;
font-weight:800;
letter-spacing:-1px;
}

.nav-links{
display:flex;
gap:30px;
list-style:none;
}

.nav-links a{
color:white;
font-weight:500;
}

.nav-btn,
.btn-primary,
.submit-btn,
.mobile-book-btn{
background:#111;
color:white;
}

.nav-btn{
padding:14px 22px;
border-radius:999px;
font-weight:600;
}

.hero-content{
max-width:900px;
margin:auto;
text-align:center;
padding:20px;
}

.hero-tag{
display:inline-block;
padding:10px 18px;
background:rgba(255,255,255,.15);
border-radius:999px;
margin-bottom:24px;
font-size:.9rem;
}

.hero h1{
font-size:4.8rem;
line-height:1;
margin-bottom:25px;
font-weight:800;
letter-spacing:-3px;
}

.hero p{
font-size:1.25rem;
max-width:720px;
margin:0 auto 40px;
opacity:.95;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:15px;
margin-bottom:50px;
}

.btn-primary,
.btn-secondary{
padding:16px 30px;
border-radius:999px;
font-weight:600;
display:inline-block;
}

.btn-secondary{
background:white;
color:#111;
}

.hero-stats{
display:flex;
justify-content:center;
gap:60px;
}

.stat{
text-align:center;
}

.stat strong{
display:block;
font-size:1.6rem;
font-weight:700;
}

.stat span{
opacity:.85;
}

section{
padding:100px 0;
}

section h2{
font-size:3rem;
text-align:center;
margin-bottom:25px;
letter-spacing:-1px;
}

.section-intro{
max-width:700px;
margin:0 auto 50px;
text-align:center;
font-size:1.1rem;
color:#666;
}

.feature-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.feature-card{
background:#f7f7f7;
padding:30px;
border-radius:20px;
}

.feature-card h3{
margin-bottom:12px;
}

.experience-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
}

.experience-card{
background:white;
border-radius:20px;
overflow:hidden;
box-shadow:0 10px 35px rgba(0,0,0,.08);
transition:.3s;
}

.experience-card:hover{
transform:translateY(-6px);
}

.experience-image{
height:260px;
background-size:cover;
background-position:center;
}

.full-day{
background-image:url('https://images.unsplash.com/photo-1554797589-7241bb691973?auto=format&fit=crop&w=1200&q=80');
}

.half-day{
background-image:url('https://images.unsplash.com/photo-1532236204992-f5e85c024202?auto=format&fit=crop&w=1200&q=80');
}

.custom{
background-image:url('https://images.unsplash.com/photo-1513407030348-c983a97b98d8?auto=format&fit=crop&w=1200&q=80');
}

.experience-content{
padding:28px;
}

.experience-content h3{
margin-bottom:12px;
font-size:1.35rem;
}

.experience-content p{
margin-bottom:22px;
color:#666;
}

.experience-content a{
font-weight:700;
color:#111;
}

.about{
background:#f8f8f8;
}

.about p{
margin-bottom:20px;
font-size:1.1rem;
text-align:center;
}

.cta-section{
background:#111;
color:white;
text-align:center;
}

.cta-section p{
margin-bottom:30px;
font-size:1.1rem;
}

.cta-section .btn-primary{
background:white;
color:#111;
}

.faq-list{
display:flex;
flex-direction:column;
gap:15px;
}

.faq details{
background:#f8f8f8;
padding:22px;
border-radius:16px;
}

.faq summary{
cursor:pointer;
font-weight:600;
}

.faq p{
margin-top:12px;
color:#666;
}

.booking{
background:#fafafa;
}

.booking-intro{
text-align:center;
margin-bottom:35px;
color:#666;
}

.booking-form{
display:flex;
flex-direction:column;
gap:18px;
}

.booking-form input,
.booking-form select,
.booking-form textarea{
width:100%;
padding:18px;
border:1px solid #ddd;
border-radius:14px;
font-family:inherit;
font-size:1rem;
}

.submit-btn{
border:none;
padding:18px;
border-radius:14px;
font-size:1rem;
font-weight:600;
cursor:pointer;
}

.payment-note{
margin-top:35px;
text-align:center;
}

.payment-note h3{
margin-bottom:15px;
}

.footer{
background:#111;
color:white;
padding:60px 0;
text-align:center;
}

.footer-logo{
font-size:2rem;
font-weight:800;
margin-bottom:15px;
}

.copyright{
margin-top:20px;
opacity:.7;
}

.mobile-book-btn{
display:none;
}

@media(max-width:992px){

.feature-grid{
grid-template-columns:repeat(2,1fr);
}

.experience-grid{
grid-template-columns:1fr;
max-width:650px;
margin:0 auto;
}

.hero h1{
font-size:4rem;
}

}

@media(max-width:768px){

.nav-links{
display:none;
}

.nav-btn{
display:none;
}

.hero h1{
font-size:3rem;
}

.hero-buttons{
flex-direction:column;
}

.hero-stats{
flex-direction:column;
gap:20px;
}

.feature-grid{
grid-template-columns:1fr;
}

section{
padding:70px 0;
}

section h2{
font-size:2.2rem;
}

.mobile-book-btn{
display:block;
position:fixed;
bottom:20px;
left:20px;
right:20px;
padding:18px;
text-align:center;
border-radius:999px;
font-weight:600;
z-index:999;
box-shadow:0 10px 25px rgba(0,0,0,.25);
}

}