*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#fff;
color:#333;
line-height:1.6;
}

.container{

width:90%;
max-width:1200px;
margin:auto;

}

/* HEADER */

/*=========================
HEADER
=========================*/

header{

position:fixed;
top:0;
left:0;
width:100%;
z-index:9999;

background:rgba(0,35,60,.90);

backdrop-filter:blur(10px);

}

header .container{

display:flex;
justify-content:space-between;
align-items:center;
height:80px;

}

nav{

display:flex;
align-items:center;

}

nav ul{

display:flex;
list-style:none;

}

nav ul li{

margin-left:30px;

}

nav ul li a{

color:#fff;
text-decoration:none;
font-weight:500;
transition:.3s;

}

nav ul li a:hover{

color:#FFD166;

}

.mobile-btn{

display:none;
font-size:28px;
color:#fff;
cursor:pointer;

}

.logo a{

font-size:30px;
font-weight:800;
text-decoration:none;
color:#fff;

}

.logo span{

color:#FFD166;

}

nav ul{

display:flex;
list-style:none;

}

nav ul li{

margin-left:35px;

}

nav ul li a{

text-decoration:none;
color:#fff;
font-weight:500;
transition:.3s;

}

nav ul li a:hover{

color:#FFD166;

}

.mobile-btn{

display:none;
font-size:28px;
color:#fff;
cursor:pointer;

}

/* HERO */

.hero{

position:relative;
height:100vh;
overflow:hidden;

display:flex;
align-items:center;
justify-content:center;

}

.hero-video{

position:absolute;

top:50%;
left:50%;

min-width:100%;
min-height:100%;

width:auto;
height:auto;

transform:translate(-50%,-50%);

object-fit:cover;

z-index:-2;

}

.overlay{

position:absolute;

top:0;
left:0;

width:100%;
height:100%;

background:linear-gradient(rgba(0,20,40,.45),
rgba(0,25,45,.55));

z-index:-1;

}

.hero-content{

text-align:center;

color:#fff;

width:90%;
max-width:900px;

animation:fadeUp 1.2s ease;

}

.hero-badge{

display:inline-block;

background:rgba(255,255,255,.15);

padding:10px 22px;

border-radius:40px;

font-size:15px;

margin-bottom:25px;

backdrop-filter:blur(12px);

border:1px solid rgba(255,255,255,.25);

}

.hero h1{

font-size:68px;

font-weight:800;

line-height:1.15;

margin-bottom:25px;

text-shadow:0 5px 25px rgba(0,0,0,.4);

}

.hero p{

font-size:22px;

line-height:1.8;

max-width:760px;

margin:auto;

margin-bottom:40px;

}

.hero-buttons{

display:flex;
justify-content:center;
align-items:center;
gap:18px;
flex-wrap:wrap;
margin-top:20px;

}

.hero-buttons a{

display:inline-flex;
align-items:center;
justify-content:center;

min-width:220px;
height:58px;

padding:0 30px;

border-radius:50px;

font-size:17px;
font-weight:600;

text-decoration:none;

transition:.3s;

}

/* Sharing Yacht */

.btn{

background:#FFD166;
color:#000;

}

.btn:hover{

background:#ffffff;
transform:translateY(-3px);

}

/* Private Yacht */

.btn-dark{

background:#003554;
color:#fff;

}

.btn-dark:hover{

background:#005b91;
transform:translateY(-3px);

}

/* WhatsApp */

.btn2{

background:#25D366;
color:#fff;

}

.btn2 i{

margin-right:10px;
font-size:20px;

}

.btn2:hover{

background:#128C7E;
transform:translateY(-3px);

}
@keyframes fadeUp{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/*====================================
SHARING YACHT
====================================*/

.sharing-section{

padding:90px 0;
background:#f7fbff;

}

.section-title{

text-align:center;
margin-bottom:60px;

}

.section-title h2{

font-size:42px;
color:#003554;
margin-bottom:15px;
font-weight:700;

}

.section-title p{

max-width:700px;
margin:auto;
font-size:17px;
color:#666;

}

.tour-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
gap:35px;

}

.tour-card{

background:#fff;
border-radius:16px;
overflow:hidden;
box-shadow:0 15px 40px rgba(0,0,0,.08);
transition:.35s;
position:relative;

}

.tour-card:hover{

transform:translateY(-10px);

}

.tour-card img{

width:100%;
height:250px;
object-fit:cover;

}

.price-tag{

position:absolute;
top:20px;
right:20px;

background:#FFD166;

color:#000;

padding:12px 20px;

border-radius:50px;

font-size:22px;
font-weight:700;

box-shadow:0 5px 15px rgba(0,0,0,.2);

}

.tour-content{

padding:30px;

}

.tour-content h3{

font-size:28px;
color:#003554;
margin-bottom:5px;

}

.tour-content h4{

font-size:18px;
color:#0096c7;
margin-bottom:20px;

}

.tour-content ul{

list-style:none;
margin-bottom:30px;

}

.tour-content ul li{

margin-bottom:12px;
font-size:15px;
color:#444;

}

.book-btn{

display:inline-block;
width:100%;
padding:15px;

background:#25D366;
color:#fff;
text-align:center;
text-decoration:none;
border-radius:40px;
font-weight:700;
transition:.3s;

}

.book-btn:hover{

background:#128C7E;

}

@media(max-width:768px){

.section-title h2{

font-size:34px;

}

.tour-grid{

grid-template-columns:1fr;

}

}
/*==================================
PRIVATE YACHT
==================================*/

.private-section{

padding:90px 0;
background:#ffffff;

}

.private-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
gap:35px;

}

.private-card{

background:#fff;
border-radius:16px;
overflow:hidden;
box-shadow:0 18px 45px rgba(0,0,0,.08);
transition:.35s;

}

.private-card:hover{

transform:translateY(-10px);

}

.private-card img{

width:100%;
height:240px;
object-fit:cover;

}

.private-content{

padding:28px;

}

.private-content h3{

font-size:28px;
margin:15px 0;
color:#003554;

}

.price{

display:inline-block;
background:#003554;
color:#fff;
padding:8px 18px;
border-radius:30px;
font-weight:600;
font-size:15px;

}

.private-content ul{

list-style:none;
margin:25px 0;

}

.private-content ul li{

margin-bottom:12px;
color:#444;
font-size:15px;

}

.private-card:hover img{

transform:scale(1.05);
transition:.5s;

}

@media(max-width:768px){

.hero{

height:100vh;

}

.hero h1{

font-size:40px;

line-height:1.2;

}

.hero p{

font-size:17px;

line-height:1.7;

}

.hero-buttons{

flex-direction:column;

align-items:center;

}

.hero-buttons a{

width:260px;

}

.hero-badge{

font-size:13px;

}

}

@media(max-width:768px){

.private-grid{

grid-template-columns:1fr;

}

.private-content h3{

font-size:24px;

}

}
/*==========================
ABOUT
==========================*/

.about-section{

padding:100px 0;

background:#f7fbff;

}

.about-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:center;

}

.about-image img{

width:100%;

border-radius:20px;

}

.about-content h2{

font-size:42px;

margin-bottom:20px;

color:#003554;

}

.about-content p{

margin-bottom:18px;

color:#555;

line-height:1.8;

}

.features{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:25px;

margin-top:40px;

}

.features div{

background:#fff;

padding:25px;

border-radius:15px;

box-shadow:0 8px 25px rgba(0,0,0,.08);

text-align:center;

}

.features i{

font-size:38px;

color:#FFD166;

margin-bottom:15px;

}

/*==========================
CONTACT
==========================*/

.contact-section{

padding:100px 0;

background:#fff;

}

.contact-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:50px;

margin-top:50px;

}

.contact-info{

background:#003554;

padding:40px;

border-radius:18px;

color:#fff;

}

.contact-info h3{

font-size:34px;

margin-bottom:25px;

}

.contact-info p{

margin-bottom:18px;

line-height:1.8;

}

.contact-info i{

margin-right:10px;

color:#FFD166;

}

.contact-form{

background:#f8f8f8;

padding:40px;

border-radius:18px;

}

.contact-form input,

.contact-form select,

.contact-form textarea{

width:100%;

padding:16px;

margin-bottom:18px;

border:1px solid #ddd;

border-radius:10px;

font-size:15px;

}

.contact-form button{

width:100%;

padding:16px;

background:#003554;

color:#fff;

border:none;

border-radius:40px;

font-size:17px;

font-weight:700;

cursor:pointer;

}

.contact-form button:hover{

background:#005b91;

}

/*==========================
FOOTER
==========================*/

footer{

background:#031b2d;

color:#ddd;

padding:80px 0 30px;

}

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1.5fr 1fr;

gap:50px;

}

.footer-grid h3{

color:#FFD166;

margin-bottom:20px;

font-size:24px;

}

.footer-grid p{

line-height:1.9;

margin-bottom:12px;

color:#cfd8dc;

}

.footer-links{

list-style:none;

padding:0;

}

.footer-links li{

margin-bottom:14px;

}

.footer-links a{

color:#ddd;

text-decoration:none;

transition:.3s;

}

.footer-links a:hover{

color:#FFD166;

padding-left:8px;

}

.social-icons{

display:flex;

gap:12px;

margin-top:25px;

}

.social-icons a{

width:45px;

height:45px;

border-radius:50%;

background:#0b3554;

display:flex;

align-items:center;

justify-content:center;

color:#fff;

text-decoration:none;

font-size:18px;

transition:.3s;

}

.social-icons a:hover{

background:#FFD166;

color:#000;

transform:translateY(-5px);

}

.footer-whatsapp{

display:inline-block;

margin-top:20px;

padding:14px 28px;

background:#25D366;

color:#fff;

border-radius:40px;

text-decoration:none;

font-weight:600;

}

.footer-whatsapp:hover{

background:#128C7E;

}

.secure-badges{

margin-top:20px;

display:flex;

flex-direction:column;

gap:10px;

font-size:14px;

}

footer hr{

margin:50px 0 25px;

border:none;

height:1px;

background:rgba(255,255,255,.15);

}

.footer-bottom{

width:100%;

display:block;

text-align:center;

padding:20px 0;

margin:0 auto;

}

.footer-bottom p{

display:block;

width:100%;

margin:0 auto;

text-align:center;

font-size:15px;

color:#cfd8dc;

line-height:1.8;

}

@media(max-width:991px){

.footer-grid{

grid-template-columns:1fr;

}

.footer-bottom{

text-align:center;

justify-content:center;

}

}

/*==========================
FLOATING BUTTON
==========================*/

.whatsapp{

position:fixed;

bottom:25px;

right:25px;

width:65px;

height:65px;

background:#25D366;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:34px;

color:#fff;

text-decoration:none;

box-shadow:0 8px 25px rgba(0,0,0,.25);

z-index:999;

}

.whatsapp:hover{

transform:scale(1.08);

}

/*==========================
TOP BUTTON
==========================*/

#topBtn{

position:fixed;

bottom:100px;

right:25px;

width:50px;

height:50px;

border:none;

background:#003554;

color:#fff;

border-radius:50%;

display:none;

cursor:pointer;

font-size:18px;

z-index:999;

}

#topBtn:hover{

background:#FFD166;

color:#000;

}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:991px){

.about-grid,

.contact-grid,

.footer-grid{

grid-template-columns:1fr;

}

.features{

grid-template-columns:1fr;

}

.about-content h2{

font-size:34px;

}

.contact-info h3{

font-size:28px;

}

}
/*==========================
GOOGLE REVIEWS
==========================*/

.reviews-section{

padding:100px 0;

background:#f8fbff;

}

.rating-box{

background:#003554;

border-radius:20px;

padding:40px;

display:flex;

justify-content:space-between;

align-items:center;

margin:50px 0;

color:#fff;

flex-wrap:wrap;

gap:20px;

}

.rating-number{

font-size:26px;

color:#FFD166;

}

.rating-number h3{

font-size:46px;

margin:10px 0;

color:#fff;

}

.google-btn{

background:#25D366;

padding:18px 40px;

border-radius:50px;

color:#fff;

text-decoration:none;

font-weight:700;

transition:.3s;

}

.google-btn:hover{

background:#128C7E;

}

.review-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

gap:30px;

}

.review-card{

background:#fff;

padding:35px;

border-radius:20px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.3s;

}

.review-card:hover{

transform:translateY(-8px);

}

.stars{

font-size:22px;

color:#FFD166;

margin-bottom:20px;

}

.review-card p{

line-height:1.8;

margin-bottom:25px;

color:#555;

}

.review-card h4{

color:#003554;

margin-bottom:5px;

}

.review-card span{

color:#888;

font-size:14px;

}

@media(max-width:768px){

.rating-box{

text-align:center;

justify-content:center;

}

}
@media (max-width:991px){

.mobile-btn{

display:block;

z-index:99999;

}

nav{

position:relative;

}

nav ul{

position:absolute;

top:80px;

right:0;

width:280px;

background:#01263f;

display:none;

flex-direction:column;

padding:20px 0;

border-radius:12px;

box-shadow:0 15px 40px rgba(0,0,0,.35);

}

nav ul.show{

display:flex;

}

nav ul li{

margin:0;

}

nav ul li a{

display:block;

padding:16px 25px;

border-bottom:1px solid rgba(255,255,255,.08);

}

}