*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:Arial, Helvetica, sans-serif;
background:#0d0d0d;
color:#ffffff;
line-height:1.7;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

.narrow{
max-width:800px;
text-align:center;
}

.hero{
position:relative;
height:100vh;
background:url('images/hero-private-journey-italy.png') center center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
}

.hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.45);
}

.hero-content{
position:relative;
z-index:2;
max-width:850px;
padding:20px;
}

.eyebrow{
letter-spacing:3px;
font-size:13px;
color:#d8c28a;
margin-bottom:20px;
}

.hero h1{
font-size:58px;
line-height:1.1;
margin-bottom:20px;
}

.hero-subtitle{
font-size:22px;
max-width:750px;
margin:auto;
margin-bottom:35px;
color:#f2f2f2;
}

.hero-buttons{
display:flex;
gap:15px;
justify-content:center;
flex-wrap:wrap;
}

.btn{
padding:15px 28px;
text-decoration:none;
border-radius:6px;
font-weight:bold;
transition:0.3s;
}

.btn-primary{
background:#d8c28a;
color:#000;
}

.btn-primary:hover{
opacity:0.9;
}

.btn-secondary{
border:1px solid #d8c28a;
color:#fff;
}

.btn-secondary:hover{
background:#d8c28a;
color:#000;
}

.section{
padding:90px 0;
}

.intro-section{
background:#111;
}

.intro-section h2{
font-size:42px;
margin-bottom:25px;
}

.intro-section p{
margin-bottom:20px;
color:#ddd;
}

.dark-section{
background:#151515;
}

.soft-border{
border-top:1px solid #222;
}

.split-layout{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.image-col img{
width:100%;
border-radius:12px;
}

.section-label{
display:block;
color:#d8c28a;
font-size:13px;
letter-spacing:2px;
margin-bottom:15px;
}

.text-col h2{
font-size:42px;
margin-bottom:20px;
}

.text-col p{
margin-bottom:18px;
color:#ddd;
}

.section-heading{
margin-bottom:50px;
}

.section-heading.center{
text-align:center;
}

.section-heading h2{
font-size:42px;
margin-bottom:15px;
}

.section-intro{
max-width:700px;
margin:auto;
color:#ccc;
}

.features-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.feature-card{
background:#1d1d1d;
padding:30px;
border-radius:12px;
}

.feature-card h3{
margin-bottom:15px;
color:#d8c28a;
}

.feature-card p{
color:#ddd;
}

.journey-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
}

.journey-card{
background:#1b1b1b;
border-radius:12px;
overflow:hidden;
}

.journey-card img{
width:100%;
height:320px;
object-fit:cover;
}

.journey-content{
padding:25px;
}

.journey-content h3{
margin-bottom:10px;
color:#d8c28a;
}

.reviews-section{
background:#101010;
}

.reviews-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.review-card{
background:#1b1b1b;
padding:30px;
border-radius:12px;
}

.review-stars{
color:#d8c28a;
margin-bottom:15px;
}

.review-text{
margin-bottom:20px;
color:#ddd;
}

.review-author{
font-weight:bold;
}

.request-section{
background:#151515;
}

.request-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:start;
}

.request-text h2{
font-size:42px;
margin-bottom:20px;
}

.request-text p{
margin-bottom:18px;
color:#ddd;
}

.final-image img{
width:100%;
border-radius:12px;
margin-top:20px;
}

.request-form{
background:#1b1b1b;
padding:35px;
border-radius:12px;
}

.request-form input,
.request-form textarea{
width:100%;
padding:15px;
margin-bottom:15px;
border:none;
border-radius:6px;
background:#2a2a2a;
color:#fff;
}

.request-form textarea{
height:180px;
resize:none;
}

.request-form button{
width:100%;
padding:16px;
background:#d8c28a;
color:#000;
border:none;
font-weight:bold;
border-radius:6px;
cursor:pointer;
}

.form-note{
font-size:13px;
margin-top:15px;
color:#aaa;
}

.footer{
background:#0a0a0a;
padding:40px 0;
border-top:1px solid #222;
}

.footer-inner{
display:flex;
justify-content:space-between;
gap:30px;
flex-wrap:wrap;
}

.footer a{
color:#d8c28a;
text-decoration:none;
}

.footer-small{
font-size:13px;
color:#999;
}

.floating-whatsapp{
position:fixed;
bottom:25px;
right:25px;
background:#25D366;
color:#fff;
padding:14px 20px;
border-radius:50px;
text-decoration:none;
font-weight:bold;
z-index:999;
}

@media(max-width:900px){

.hero h1{
font-size:40px;
}

.hero-subtitle{
font-size:18px;
}

.split-layout,
.request-wrapper,
.features-grid,
.reviews-grid,
.journey-grid{
grid-template-columns:1fr;
}

.section{
padding:70px 0;
}

.text-col h2,
.request-text h2,
.section-heading h2,
.intro-section h2{
font-size:32px;
}

.journey-card img{
height:260px;
}
}