/* incruises.css - CTA card styles */
.cta-card{background:#0f1624;color:#fff;border-radius:28px;padding:36px;box-shadow:0 20px 40px rgba(2,14,34,0.45);max-width:1100px;margin:24px auto;display:flex;align-items:center;gap:30px;position:relative;border:1px solid rgba(255,255,255,0.04);overflow:hidden}
.cta-card .cta-left{flex:1}
.cta-card h2{font-size:2.4rem;margin:0 0 12px;font-weight:800}
.cta-card p{color:rgba(255,255,255,0.85);margin:0 0 20px;max-width:720px}
.cta-btn{background:linear-gradient(90deg,#ff8c29,#f56d08);border:none;color:#fff;padding:16px 34px;border-radius:16px;font-size:1.05rem;cursor:pointer;display:inline-flex;align-items:center;gap:10px;box-shadow:0 10px 20px rgba(245,123,16,0.18)}
.cta-right img{width:320px;height:auto;border-radius:14px;object-fit:cover;box-shadow:0 12px 30px rgba(2,14,34,0.4)}

/* ship image placed directly inside .cta-card (sibling to .cta-left) */
.cta-card > img{max-width:160px;height:auto;border-radius:12px;object-fit:contain;margin-left:24px;align-self:center}

@media (max-width:900px){
  .cta-card > img{max-width:140px;margin-left:0;margin-top:12px}
}
@media (max-width:600px){
  .cta-card > img{max-width:110px;margin-top:10px}
}

@media (max-width:900px){
  .cta-card{flex-direction:column;align-items:center;padding:28px}
  .cta-right img{width:240px}
  .cta-card h2{font-size:1.9rem;text-align:center}
  .cta-card p{text-align:center}
}
@media (max-width:600px){
  .cta-card{padding:20px;border-radius:18px}
  .cta-right img{width:180px}
  .cta-btn{width:100%;justify-content:center}
}

/* page frame / overall border line */
.page-frame{max-width:1100px;margin:28px auto;padding:18px;border:1px solid rgba(11,17,32,0.08);border-radius:14px;background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));box-shadow:0 6px 18px rgba(2,14,34,0.04)}

@media (max-width:900px){
  .page-frame{margin:18px 12px;padding:14px}
}

/* Features / Why Choose section */
.features-section{max-width:1100px;margin:36px auto;padding:28px 40px 28px 56px;border-radius:14px;background:#fff;border:1px solid rgba(11,17,32,0.06);box-shadow:0 8px 30px rgba(2,14,34,0.04);position:relative}
.features-section::before{content:"";position:absolute;left:0;top:12px;bottom:12px;width:8px;border-top-left-radius:12px;border-bottom-left-radius:12px;background:linear-gradient(180deg,#ff8c29,#f56d08);box-shadow:0 4px 18px rgba(245,123,16,0.12)}
.features-section h3{font-size:2.6rem;margin:0 0 18px;color:#f57b10}
.features-list{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin-top:12px}
.feature-item{display:flex;gap:25px;align-items:flex-start}
.feature-icon{color:#f57b10;font-size:25px;min-width:48px;background:none !important;border-radius:0 !important;box-shadow:none !important}
.feature-text{color:#0b1120;font-weight:600; font-size: 15px;}
.feature-sub{color:#444;margin-top:6px;font-weight:400; font-size: 11px;}

.outline-btn{display:inline-flex;align-items:center;gap:12px;padding:12px 20px;border-radius:14px;border:2px solid #f57b10;color:#f57b10;background:transparent;margin-top:22px}

@media (max-width:800px){
  .features-list{grid-template-columns:1fr}
}

@media (max-width:700px){
  .features-section{padding-left:20px}
  .features-section::before{left:8px;top:10px;bottom:10px;width:6px}
}

/* Full-bleed banner: cover full viewport width and height without cropping the image
   - Use vw-centering trick so banner stretches edge-to-edge even inside centered containers
   - object-fit:contain keeps the whole image visible and centers it within the viewport
*/
.banner-section{
  position:relative;
  left:50%;
  right:50%;
  margin-left:-50vw;
  margin-right:-50vw;
  width:100vw;
  overflow:hidden;
  margin-top:0;
  margin-bottom:0;
  padding:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:transparent; /* let page background show through instead of black */
}

/* Banner image fills the viewport height; object-fit:contain prevents cropping */
.banner-img{
  width:100%;
  height:100vh;
  object-fit:contain;
  display:block;
  max-width:none;
  box-sizing:border-box; /* ensure border does not add to layout width */
  border:6px solid rgba(255,255,255,0.06); /* subtle pale border */
  border-radius:6px;
  box-shadow:0 8px 30px rgba(2,14,34,0.25);
}

/* Small screens: keep full viewport but allow slightly smaller visual height if desired */
@media (max-width:420px){
  .banner-img{height:92vh}
}

/* avoid horizontal scroll caused by the full-bleed trick */
html,body{overflow-x:hidden}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-button {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.floating-button:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.floating-button.call {
    background: #0052cc;
    color: white;
}

.floating-button.call i {
    transform: rotate(95deg);
}

.floating-button.whatsapp {
    background: #25D366;
    color: white;
}

.floating-button i {
    font-size: 28px;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

/* top home image: show full image without cropping and keep responsive */
.home{position:relative;left:50%;margin-left:-50vw;margin-right:-50vw;width:100vw;overflow:hidden;margin-top:0}
.home img{width:100%;height:auto;max-height:80vh;object-fit:contain;display:block}

@media (max-width:900px){
  .home img{max-height:60vh}
}
@media (max-width:600px){
  .home img{max-height:48vh}
}

/* connector image between features and CTA */
.connector-wrap{width:100%;display:flex;justify-content:center;pointer-events:none;margin-top:-48px;margin-bottom:-12px}
.connector-img{width:340px;max-width:46%;height:auto;object-fit:contain;display:block;transform:translateY(8px)}

@media (max-width:1200px){
  .connector-img{width:300px}
  .connector-wrap{margin-top:-40px}
}
@media (max-width:900px){
  .connector-img{width:240px}
  .connector-wrap{margin-top:-28px}
}
@media (max-width:600px){
  .connector-img{width:180px}
  .connector-wrap{margin-top:-16px}
}
