/* ========================================= */
/* GLOBAL STYLES */
/* ========================================= */

:root{
  --navy:#071b2f;
  --gold:#c9a45c;
  --cream:#f7f1e6;
  --soft:#eef3f6;
  --text:#24313d;
  --white:#ffffff;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:var(--white);
  line-height:1.6;
}

h1,h2,h3{
  font-family:Georgia, 'Times New Roman', serif;
  color:var(--navy);
  line-height:1.15;
  margin:0 0 18px;
}

p{margin:0 0 18px}

a{
  text-decoration:none;
  color:inherit;
}

img{
  max-width:100%;
  height:auto;
}

/* ========================================= */
/* BUTTONS */
/* ========================================= */

.ttis-btn{
  display:inline-block;
  background:var(--gold);
  color:#111;
  padding:13px 22px;
  border-radius:999px;
  font-weight:bold;
  border:1px solid var(--gold);
}

.ttis-btn.dark{
  background:var(--navy);
  color:#fff;
  border-color:var(--navy);
}

.ttis-btn.outline{
  background:transparent;
  color:var(--navy);
  border-color:var(--navy);
}

/* ========================================= */
/* TOP CONTACT BAR */
/* ========================================= */

.ttis-topbar{
  background:var(--navy);
  color:#fff;
  font-size:14px;
  padding:10px 7%;
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

/* ========================================= */
/* HEADER / MAIN NAVIGATION */
/* ========================================= */

.ttis-header{
  background:#fff;
  padding:10px 7%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-bottom:1px solid #eee;
  position:sticky;
  top:0;
  z-index:999;
}

.ttis-logo{
    flex-shrink:0;
}

.ttis-logo-link{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.ttis-logo img{
    width:65px;
    height:auto;
    display:block;
}

.ttis-logo-text{
    font-family:Georgia, serif;
    font-size:28px;
    line-height:1;
    white-space:nowrap;
}

.ttis-orange{
    color:#d6810b;
}

.ttis-blue{
    color:#2b6f95;
}

.ttis-nav{
  display:flex;
  gap:24px;
  align-items:center;
  font-size:15px;
}

.ttis-nav a:hover{
  color:var(--gold);
}

/* ========================================= */
/* HAMBURGER MENU */
/* ========================================= */

.ttis-menu-check{
  display:none;
}

.ttis-menu-toggle{
  display:none;
  width:42px;
  height:34px;
  cursor:pointer;
  position:relative;
  z-index:1002;
}

.ttis-menu-toggle span{
  display:block;
  width:100%;
  height:3px;
  background:var(--navy);
  border-radius:3px;
  margin:6px 0;
  transition:.25s ease;
}

/* ========================================= */
/* DROPDOWN NAVIGATION */
/* ========================================= */

.dropdown{
  position:relative;
}

.dropdown > a{
  display:block;
}

.dropdown-menu{
  position:absolute;
  top:100%;
  left:0;
  min-width:250px;
  background:#ffffff;
  border-radius:12px;
  box-shadow:0 15px 40px rgba(0,0,0,.12);
  opacity:0;
  visibility:hidden;
  transition:.25s;
  padding:10px 0;
  z-index:999;
}

.dropdown-menu a{
  display:block;
  padding:12px 20px;
  color:#24313d;
  font-size:14px;
  white-space:nowrap;
}

.dropdown-menu a:hover{
  background:#f5f5f5;
  color:var(--gold);
}

.dropdown:hover .dropdown-menu{
  opacity:1;
  visibility:visible;
}
/* ========================================= */
/* DESTINATIONS HORIZONTAL DROPDOWN */
/* ========================================= */

.dropdown.mega-dropdown{
  position:relative;
}

.dropdown.mega-dropdown .dropdown-menu.mega-menu{
  width:900px;
  min-width:900px;
  display:flex;
  flex-direction:row;
  flex-wrap:wrap;
  gap:0 22px;
  padding:22px 26px;
}

.dropdown.mega-dropdown .dropdown-menu.mega-menu a{
  display:inline-block;
  padding:7px 0;
  background:transparent;
  border-radius:0;
  white-space:nowrap;
  color:#24313d;
  font-size:14px;
}

.dropdown.mega-dropdown .dropdown-menu.mega-menu a:hover{
  background:transparent;
  color:var(--gold);
}
/* ========================================= */
/* HERO SECTION */
/* ========================================= */

.ttis-hero{
  min-height:760px;
  background:
    linear-gradient(90deg, rgba(7,27,47,.92) 0%, rgba(7,27,47,.78) 42%, rgba(7,27,47,.18) 100%),
    url('YOUR-CRUISE-HERO-IMAGE.jpg') center/cover no-repeat;
  display:flex;
  align-items:center;
  padding:90px 7%;
  color:#fff;
}

.ttis-hero-content{
  max-width:680px;
}

.ttis-kicker{
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:13px;
  font-weight:bold;
  margin-bottom:20px;
}

.ttis-hero h1{
  color:#fff;
  font-size:62px;
}

.ttis-hero p{
  font-size:21px;
  max-width:610px;
}

.ttis-hero-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-top:32px;
}

/* ========================================= */
/* TRUST INDICATORS */
/* ========================================= */

.ttis-trust-row{
  background:var(--cream);
  padding:28px 7%;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
  text-align:center;
}

.ttis-trust-row div{
  font-size:15px;
  color:var(--navy);
  font-weight:bold;
}

/* ========================================= */
/* GENERAL SECTION LAYOUT */
/* ========================================= */

.ttis-section{
  padding:90px 7%;
}

.ttis-section.soft{
  background:var(--soft);
}

.ttis-section.cream{
  background:var(--cream);
}

.ttis-centered{
  max-width:850px;
  margin:0 auto 50px;
  text-align:center;
}

.ttis-centered h2{
  font-size:42px;
}

.ttis-grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:55px;
  align-items:center;
}

.ttis-card-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}

.ttis-card{
  background:#fff;
  padding:34px;
  border-radius:24px;
  box-shadow:0 18px 45px rgba(7,27,47,.08);
  border:1px solid #eee;
}

.ttis-card h3{
  font-size:25px;
}

.ttis-card .icon{
  font-size:34px;
  margin-bottom:18px;
}

/* ========================================= */
/* WHY WORK WITH ALLISON */
/* ========================================= */

.ttis-image-card{
  min-height:520px;
  border-radius:28px;
  background:url('YOUR-ALLISON-OR-CRUISE-IMAGE.jpg') center/cover no-repeat;
  box-shadow:0 25px 60px rgba(0,0,0,.16);
}

/* ========================================= */
/* FEATURED CRUISE LINES */
/* ========================================= */

.ttis-logo-strip{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:20px;
  text-align:center;
}

.ttis-logo-box{
  background:#fff;
  padding:26px 18px;
  border-radius:18px;
  border:1px solid #eee;
  font-weight:bold;
  color:var(--navy);
}

/* ========================================= */
/* SIGNATURE MESSAGE SECTION */
/* ========================================= */

.ttis-signature{
  background:var(--navy);
  color:#fff;
  padding:70px 7%;
}

.ttis-signature h2{
  color:#fff;
  font-size:42px;
}

.ttis-signature p{
  max-width:900px;
  font-size:19px;
}

/* ========================================= */
/* HOW IT WORKS */
/* ========================================= */

.ttis-steps{
  counter-reset:step;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.ttis-step{
  background:#fff;
  border-radius:22px;
  padding:30px;
  position:relative;
}

.ttis-step:before{
  counter-increment:step;
  content:counter(step);
  display:block;
  width:42px;
  height:42px;
  background:var(--gold);
  color:#111;
  border-radius:50%;
  text-align:center;
  line-height:42px;
  font-weight:bold;
  margin-bottom:20px;
}

/* ========================================= */
/* FEATURED PROGRAM / CRUISE FOR FREE */
/* ========================================= */

.ttis-feature-box{
  background:#fff;
  border-radius:30px;
  padding:50px;
  box-shadow:0 25px 70px rgba(7,27,47,.12);
}

/* ========================================= */
/* TESTIMONIAL */
/* ========================================= */

.ttis-testimonial{
  max-width:900px;
  margin:0 auto;
  text-align:center;
  font-family:Georgia, 'Times New Roman', serif;
  font-size:30px;
  color:var(--navy);
}

.ttis-testimonial-name{
  margin-top:24px;
  font-family:Arial, Helvetica, sans-serif;
  font-size:15px;
  color:#555;
}

/* ========================================= */
/* FAQ SECTION */
/* ========================================= */

.ttis-faq{
  max-width:950px;
  margin:0 auto;
}

.ttis-faq-item{
  background:#fff;
  border-radius:18px;
  padding:26px;
  margin-bottom:16px;
  border:1px solid #eee;
}

/* ========================================= */
/* CONTACT FORM */
/* ========================================= */

.ttis-contact-box{
  background:#fff;
  border-radius:30px;
  padding:45px;
  box-shadow:0 25px 70px rgba(7,27,47,.12);
  max-width:980px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.ttis-form input,
.ttis-form select,
.ttis-form textarea{
  width:100%;
  padding:15px;
  border:1px solid #d8d8d8;
  border-radius:12px;
  margin-bottom:14px;
  font-size:15px;
}

.ttis-form textarea{
  height:120px;
}

.ttis-form button{
  width:100%;
  border:0;
  cursor:pointer;
  font-size:16px;
}

/* ========================================= */
/* FOOTER */
/* ========================================= */

.ttis-footer{
  background:#061525;
  color:#d9e1e8;
  padding:45px 7%;
  display:flex;
  justify-content:space-between;
  gap:25px;
  flex-wrap:wrap;
}

.ttis-footer strong{
  color:#fff;
}

/* ========================================= */
/* MOBILE RESPONSIVE */
/* ========================================= */

@media(max-width:900px){

  .ttis-header{
    display:flex;
    position:sticky;
    align-items:center;
    justify-content:space-between;
    padding:10px 5%;
  }

  /* LOGO */

  .ttis-logo-link{
    display:flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
  }

  .ttis-logo img{
    width:46px;
    height:auto;
    display:block;
  }

  .ttis-logo-text{
    font-size:22px;
    line-height:1;
    white-space:nowrap;
  }

  /* HAMBURGER */

  .ttis-menu-toggle{
    display:block;
  }

  .ttis-nav{
    position:fixed;
    top:0;
    right:-100%;
    width:84%;
    max-width:360px;
    height:100vh;
    background:#fff;
    display:block;
    padding:92px 28px 30px;
    box-shadow:-18px 0 45px rgba(0,0,0,.18);
    transition:right .28s ease;
    overflow-y:auto;
    z-index:1001;
  }

  .ttis-menu-check:checked ~ .ttis-nav{
    right:0;
  }

  .ttis-nav a,
  .dropdown > a{
    display:block;
    padding:13px 0;
    border-bottom:1px solid #eee;
    color:var(--navy);
    font-size:16px;
  }

  .dropdown-menu{
    position:static;
    opacity:1;
    visibility:visible;
    box-shadow:none;
    border-radius:0;
    padding:4px 0 8px 18px;
    background:transparent;
    min-width:0;
  }

  .dropdown-menu a{
    padding:9px 0;
    border-bottom:0;
    font-size:14px;
    color:#555;
    white-space:normal;
  }

  .ttis-nav .ttis-btn{
    display:block;
    width:100%;
    margin-top:18px;
  }

  .ttis-menu-check:checked + .ttis-menu-toggle span:nth-child(1){
    transform:translateY(9px) rotate(45deg);
  }

  .ttis-menu-check:checked + .ttis-menu-toggle span:nth-child(2){
    opacity:0;
  }

  .ttis-menu-check:checked + .ttis-menu-toggle span:nth-child(3){
    transform:translateY(-9px) rotate(-45deg);
  }

  .ttis-hero{
    min-height:auto;
    padding:80px 7%;
  }

  .ttis-hero h1{
    font-size:42px;
  }

  .ttis-trust-row,
  .ttis-card-grid,
  .ttis-steps,
  .ttis-grid-2,
  .ttis-contact-box,
  .ttis-logo-strip{
    grid-template-columns:1fr;
  }

  .dropdown.mega-dropdown .dropdown-menu.mega-menu{
    width:auto;
    min-width:0;
    display:block;
    padding:4px 0 8px 18px;
  }

  .dropdown.mega-dropdown .dropdown-menu.mega-menu a{
    display:block;
    padding:9px 0;
    white-space:normal;
    color:#555;
  }

}

/* SMALL PHONES */

@media(max-width:480px){

  .ttis-header{
    padding:8px 4%;
  }

  .ttis-logo img{
    width:38px;
  }

  .ttis-logo-text{
    font-size:17px;
    letter-spacing:-0.3px;
  }

  .ttis-topbar{
    justify-content:center;
    text-align:center;
    font-size:12px;
  }

  .ttis-hero h1{
    font-size:34px;
  }

}
