*{margin:0;padding:0;box-sizing:border-box;}
body{font-family:'Inter',sans-serif;background:#f1f5f9;color:#0f172a}

/* HEADER */
.header{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 40px;
background:#232f3e;
color:#fff;
position:sticky;
top:0;
z-index:999;
}
.logo{font-size:20px;font-weight:700}
.nav a{
color:#fff;
margin:0 12px;
text-decoration:none;
font-size:14px;
}
.header-cta{
background:#22c55e;
padding:10px 16px;
border-radius:6px;
text-decoration:none;
color:#fff;
font-weight:600;
}
/* HEADER */
.header {
    position: sticky;
    top: 0;
    background: #232f3e;
    z-index: 999;
    padding: 12px 0;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

/* NAV */
.nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

/* CTA */
.header-cta {
    background:#37475a;
    padding: 10px 16px;
    border-radius: 6px;
    color: #ffd814;
    text-decoration: none;
    font-weight: 600;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #1c9be6;
        display: none;
        flex-direction: column;
        padding: 20px;
    }

    .nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .nav.active {
        display: flex;
    }

    .header-cta {
        display: none; /* optional for mobile */
    }
}

/* HERO */
.hero{
background:linear-gradient(rgba(0,0,0,.3),rgba(0,0,0,.3)),
url('./hero-tampa.jpg') center/cover no-repeat;
background-size:cover;
padding:100px 20px;
text-align:center;
color:#fff;
}
.hero h1{font-size:40px;margin-bottom:10px;}
.hero p{font-size:18px;margin-bottom:20px;}

.hero-card{
background:rgba(255,255,255,0.1);
backdrop-filter:blur(10px);
padding:25px;
border-radius:12px;
display:inline-block;
}

.cta-btn{
background:#FFCC3D;
padding:14px 28px;
border-radius:8px;
color:#031B2E;
text-decoration:none;
font-weight:600;
display:inline-block;
margin-top:10px;
}

/* TRUST BAR */
.trust-bar{
display:flex;
justify-content:space-around;
background:#fff;
padding:20px;
box-shadow:0 4px 10px rgba(0,0,0,0.05);
}
.trust-bar div{text-align:center;font-size:14px}

/* SECTION */
.section{
max-width:1100px;
margin:auto;
padding:20px 20px;
}
.section h2{text-align:center;margin-bottom:30px}

/* CARDS */
.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:20px;
}
.card{
background:#fff;
padding:25px;
border-radius:12px;
box-shadow:0 8px 20px rgba(0,0,0,0.05);
text-align:center;
}

/* CTA BANNER */
.cta-banner{
background:#1c9be6;
color:#fff;
padding:50px 20px;
text-align:center;
border-radius:12px;
}  
.cta-banner .cta-btn {
background:#064f7a !important ;
color:#FFF !important;
}
/* CARD */
.feature-card {
    background: #e9eef5; 
    font-weight: 700;
    font-size: 18px;
    padding: 15px 20px;
    border-radius: 18px;
    transition: all 0.3s ease; 
    text-align: center;
}

/* HIGHLIGHT CARD */
.feature-card.highlight {
    border: 2px solid #c7d7f2;
    background: #edf4ff;
}

/* ICON */
.icon {
    font-size: 40px;
    margin-bottom: 20px;
}

/* HOVER EFFECT */
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }
} 



/* INFO */
.info {
  padding: 40px 20px;
}

.info .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.img img {
  width: 100%;
  border-radius: 15px;
}

.content h2 {
  font-size: 36px;
}

.content span {
  color: #1c9be6 ;
}
/* SECTION */
.services-section {
    background: #fff;
    padding: 80px 20px;
    color: #212529;
}

.container {
    max-width: 1200px;
    margin: auto;
}

/* TITLE */
.subtitle {
    text-align: center;
    letter-spacing: 4px;
    font-size: 14px;
    color: #1c9be6;
    margin-bottom: 10px;
}

.title {
    text-align: center;
    font-size: 52px;
    font-weight: 500;
    margin-bottom: 50px;
    font-family: serif;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.service-card {
    background: #064f7a;
    color : #fff;
    padding: 40px;
    border-radius: 6px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

/* HOVER */
.service-card:hover {
    transform: translateY(-6px);
    background: #10204a;
}

/* TEXT */
.service-card h3 {
    font-size: 30px;
    font-weight: 500;
    line-height: 1.3;
    color : #fff;
}

/* LINK */
.service-link {
    color:#fff;
    text-decoration: none;
    font-size: 16px;
    margin-top: 20px;
    display: inline-block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .title {
        font-size: 32px;
    }
}



/* FOOTER */
.footer{
background:#fff;
color:#545e69;
padding:40px 20px;
margin-top:40px;
} 
.footer h4 , footer p{
    color: #545e69;
}
.footer-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
}
.footer ul li{
color:#545e69;
text-decoration:none;
display:block;
margin-bottom:8px;
font-size:14px; 
} 
.footer ul li a{
color:#545e69;text-decoration:none;display:block;
margin-bottom:8px;font-size:14px;
}
.footer-bottom{
text-align:center;
margin-top:20px;
font-size:13px;
}

/* MOBILE */
@media(max-width:768px){
.hero h1{font-size:26px;}
.header{padding:15px;}
.nav{display:none;} 
  .info .grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
    .hero-luxury {
        padding: 15px 0 60px;
    }
} 

/* ===== SECTION ===== */
.ship-section {
  padding: 25px 20px;
  background: #f8fbff;
  font-family: 'Inter', sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* ===== HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0a2540;
}

.section-header p {
  font-size: 16px;
  color: #6b7c93;
  margin-top: 10px;
}

/* ===== GRID ===== */
.ship-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* ===== CARD ===== */
.ship-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}

.ship-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* ===== IMAGE ===== */
.ship-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.ship-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.ship-card:hover img {
  transform: scale(1.05);
}

/* ===== BADGE ===== */
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ff4d4d;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 50px;
}

.badge.new {
  background: linear-gradient(135deg, #ff7a18, #ff3d00);
}

/* ===== CONTENT ===== */
.ship-content {
  padding: 20px;
  flex: 1;
}

.ship-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0a2540;
}

.ship-content p {
  font-size: 14px;
  color: #6b7c93;
  margin-bottom: 15px;
}

/* ===== LIST ===== */
.ship-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.ship-content ul li {
  font-size: 14px;
  margin-bottom: 6px;
  color: #334e68;
}

/* ===== BUTTON ===== */
.btn-primary {
  display: inline-block;
  text-align: center;
  background: #1c9be6 !important;
  color: #fff;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0056d2, #003f9e);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .ship-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ship-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .ship-img {
    height: 180px;
  }
}

.ship-img {
  width: 100%;
  aspect-ratio: 16 / 9; /* 🔥 modern responsive */
  overflow: hidden;
}

.ship-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} 




@media (max-width: 768px) { 

.header {
   
    display: none;
} 
}

.scroll-to-top {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 9999;

  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
} 

.call-cta i {
    transform: rotate(11deg);
} 





/* =========================
   PORT SEO SECTION
========================= */

.pm-seo-section{
    padding:70px 0;
    background:#fff;
    font-family:'Playfair Display', serif;
}

.pm-seo-header{
    max-width:850px;
    /*margin:auto;*/
    margin-bottom:50px;
}

.pm-seo-subtitle{
    display:inline-block;
    color:#1c9be6;
    font-size:14px;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:10px;
    font-weight:600;
}

.pm-seo-header h1{
    font-size:38px;
    font-weight:700;
    color:#232f3e;
    margin-bottom:18px;
    line-height:1.3;
}

.pm-seo-header p{
    font-size:16px;
    color:#555;
    line-height:1.8;
}

.pm-seo-content{
    max-width:950px;
    /*margin:auto;*/
}

.pm-seo-block{
    margin-bottom:40px;
    padding-bottom:30px;
    border-bottom:1px solid #ececec;
}

.pm-seo-block:last-child{
    border-bottom:none;
}

.pm-seo-block h2{
    font-size:24px;
    font-weight:700;
    color:#232f3e;
    margin-bottom:15px;
    display:flex;
    align-items:center;
    gap:12px;
}
.pm-seo-block h3{
    font-size:22px;
    font-weight:700;
    color:#232f3e;
    margin-bottom:15px;
    display:flex;
    align-items:center;
    gap:12px;
}
.pm-seo-block h2 i{
    color:#1c9be6;
    font-size:20px;
}

.pm-seo-block p{
    font-size:16px;
    line-height:1.9;
    color:#444;
    margin-bottom:15px;
}

.pm-seo-block ul{
    padding-left:20px;
    margin-top:10px;
}

.pm-seo-block ul li{
    margin-bottom:10px;
    color:#444;
    line-height:1.8;
}

/* TABLET */
@media(max-width:991px){

.pm-seo-header h1{
    font-size:32px;
}

.pm-seo-block h2{
    font-size:22px;
}
.pm-seo-block h3{
    font-size : 20px; 
    line-height : 1.5; 
    align-items : flex-start;
}

}

/* MOBILE */
@media(max-width:768px){

.pm-seo-section{
    padding:20px 0;
}

.pm-seo-header{
    margin-bottom:35px;
}

.pm-seo-header h1{
    font-size:24px;
}

.pm-seo-header p,
.pm-seo-block p,
.pm-seo-block ul li{
    font-size:15px;
}

.pm-seo-block{
    margin-bottom:30px;
    padding-bottom:22px;
}

.pm-seo-block h2{
    font-size:20px;
    line-height:1.5;
    align-items:flex-start;
}
.pm-seo-block h3{
    font-size : 18px; 
    line-height : 1.5; 
    align-items : flex-start;
}
} 




/* =========================
   MAP SECTION
========================= */
.explore-port{
background:var(--light);
}

.explore-info{
background:#fff;
padding:20px;
border-radius:var(--radius);
box-shadow:0 10px 30px rgba(0,0,0,.08);
margin-bottom:20px;
}

.map-wrap{
width:100%;
height:385px;
border-radius:var(--radius);
overflow:hidden;
}

.map-wrap iframe{
width:100%;
height:100%;
}

