/* ========================================= */
/* GLOBAL STYLES */
/* ========================================= */

:root{
  --navy:#071b2f;
  --gold:#8a5a12;
  --cream:#f7f1e6;
  --soft:#eef3f6;
  --text:#24313d;
  --white:#ffffff;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:var(--white);
  line-height:1.6;
  overflow-x:hidden;
}

h1,
h2,
h3{
  font-family:Arial, Helvetica, sans-serif !important;
  color:var(--navy);
  line-height:1.15;
  margin:0 0 18px;
}

h1{
  font-size:clamp(42px,5vw,62px);
  font-weight:600;
  letter-spacing:-1.2px;
}

h2{
  font-size:clamp(32px,4vw,46px);
  font-weight:500;
  letter-spacing:-0.8px;
}

h3{
  font-size:clamp(24px,2vw,30px);
  font-weight:500;
  letter-spacing:-0.4px;
}
p{
  margin:0 0 18px;
}

a{
  text-decoration:none;
  color:inherit;
}

img,
iframe,
video,
table{
  max-width:100%;
}

img{
  height:auto;
  display:block;
}

input,
select,
textarea,
button{
  max-width:100%;
}

/* ========================================= */
/* BUTTONS */
/* ========================================= */

.ttis-btn{
  display:inline-block;
  background:var(--gold);
  color:#fff;
  padding:13px 22px;
  border-radius:999px;
  font-weight:bold;
  border:1px solid var(--gold);
  text-align:center;
}

.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;
}

.ttis-logo-text{
  font-family:Georgia, serif;
  font-size:28px;
  line-height:1;
  white-space:nowrap;
}

.ttis-orange{
  color:var(--gold);
}

.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:1003;
}

.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 */
/* ========================================= */

/* ========================================= */
/* HERO SECTION */
/* ========================================= */

.ttis-hero{
  position:relative;
  min-height:520px;
  height:70vh;
  max-height:720px;
  display:flex;
  align-items:center;
  padding:60px 7%;
  color:#fff;
  overflow:hidden;
  background:#071b2f;
}

.ttis-hero-bg{
  position:absolute !important;
  inset:0 !important;
  width:100% !important;
  height:100% !important;
  max-width:none !important;
  object-fit:cover !important;
  object-position:center center !important;
  display:block !important;
  z-index:0;
}

.ttis-hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      90deg,
      rgba(7,27,47,.94) 0%,
      rgba(7,27,47,.82) 38%,
      rgba(7,27,47,.45) 65%,
      rgba(7,27,47,.14) 100%
    );
  z-index:1;
  pointer-events:none;
}

.ttis-hero-content{
  position:relative;
  z-index:2;
  max-width:700px;
}

.ttis-kicker{
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:13px;
  font-weight:700;
  margin-bottom:20px;
}

.ttis-hero h1{
  color:#fff;
  font-size:clamp(42px,5vw,68px);
  line-height:1.05;
  margin-bottom:22px;
}

.ttis-hero p{
  font-size:21px;
  line-height:1.7;
  max-width:620px;
  color:rgba(255,255,255,.95);
}

.ttis-hero-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-top:34px;
}

/* ========================================= */
/* 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:1100px;
  margin:0 auto;
  text-align:center;
  padding:0 24px;
}

.ttis-centered p{
  max-width:1050px;
}

.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;
  margin:0 0 12px;
  line-height:1.2;
}

.ttis-card .icon{
  margin-bottom:-4px;
  line-height:1;
}

.ttis-card .icon img{
  width:48px;
  height:48px;
  object-fit:contain;
}

/* ========================================= */
/* 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:#071b2f;
  color:#ffffff;
  padding:54px 22px 24px;
  font-family:Arial, sans-serif;
}

.ttis-footer-inner{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:34px;
  align-items:start;
}

.ttis-footer strong{
  font-size:22px;
  color:#ffffff;
}

.ttis-footer h3,
.ttis-footer h4{
  font-family:Arial, Helvetica, sans-serif;
  margin:0 0 14px;
  font-size:15px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:#d8b46a;
  line-height:1.3;
}

.ttis-footer p{
  margin:10px 0 0;
  font-size:15px;
  line-height:1.7;
  color:rgba(255,255,255,.78);
}

.ttis-footer a{
  color:#ffffff;
  text-decoration:underline;
  font-weight:600;
}

.ttis-footer a:hover{
  color:#d8b46a;
}

.ttis-footer-affiliate{
  font-size:13px!important;
  color:rgba(255,255,255,.62)!important;
}

.ttis-social-icons{
  display:flex;
  gap:12px;
  align-items:center;
  margin-top:10px;
}

.ttis-social-icon{
  width:42px;
  height:42px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(216,180,106,.45);
  transition:.25s ease;
}

.ttis-social-icon svg{
  width:22px;
  height:22px;
  fill:#ffffff;
}

.ttis-social-icon:hover{
  background:#d8b46a;
  transform:translateY(-2px);
}

.ttis-social-icon:hover svg{

  fill:#071b2f;
}

.ttis-instagram{
  font-size:14px!important;
  color:rgba(255,255,255,.65)!important;
}

.ttis-footer-bottom{
  max-width:1180px;
  margin:34px auto 0;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.12);
  text-align:center;
}

.ttis-footer-bottom p{
  font-size:13px;
  color:rgba(255,255,255,.58);
}

/* ========================================= */
/* ACTIVE NAV PAGE */
/* ========================================= */

.ttis-nav a.active,
.dropdown-menu a.active{
  color:#c9a45c !important;
  font-weight:700 !important;
}

.ttis-nav a.active:hover,
.ttis-nav a.active:visited{
  color:#c9a45c !important;
}

.dropdown-menu a.active{
  background:#f7f1e6;
  border-radius:8px;
}

/* ========================================= */
/* CRUISE LOGO GRID */
/* ========================================= */

.cruise-logo-section{
  padding:20px 0 60px;
}

.cruise-logo-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:24px;
  align-items:center;
}

.cruise-logo{
  background:#fff;
  border:1px solid #e8e8e8;
  border-radius:18px;
  padding:18px;
  text-align:center;
  box-shadow:0 10px 25px rgba(7,27,47,.05);
}

.cruise-logo img{
  width:100%;
  height:80px;
  object-fit:contain;
}

/* ========================================= */
/* TABLET / MOBILE */
/* ========================================= */

@media(max-width:1000px){

  .cruise-logo-grid{
    grid-template-columns:repeat(4,1fr);
  }

}

@media(max-width:900px){

  .ttis-header{
    display:flex;
    position:sticky;
    top:0;
    align-items:center;
    justify-content:space-between;
    padding:10px 5%;
    z-index:1002;
  }

  .ttis-logo-link{
    gap:8px;
  }

  .ttis-logo img{
    width:46px;
  }

  .ttis-logo-text{
    font-size:22px;
    line-height:1;
    white-space:nowrap;
  }

  .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;
    text-align:center;
  }

  .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{
    height:auto;
    min-height:540px;
    padding:70px 24px;
  }

  .ttis-hero-bg{
    object-position:center center !important;
  }

  .ttis-hero-content{
    max-width:100%;
  }

  .ttis-hero h1{
    font-size:42px;
    line-height:1.08;
  }

  .ttis-hero p{
    font-size:18px;
    line-height:1.55;
  }

  .ttis-hero-actions{
    flex-direction:column;
    align-items:flex-start;
  }

  .ttis-hero-actions .ttis-btn{
    width:100%;
    max-width:340px;
  }

  .ttis-section{
    padding:60px 5%;
  }

  .ttis-centered{
    padding:0;
  }

  .ttis-centered h2{
    font-size:34px;
  }

  .ttis-trust-row,
  .ttis-card-grid,
  .ttis-steps,
  .ttis-grid-2,
  .ttis-contact-box,
  .ttis-logo-strip{
    grid-template-columns:1fr;
  }

  .ttis-card,
  .ttis-feature-box,
  .ttis-contact-box{
    padding:28px;
  }

  .ttis-signature{
    padding:55px 5%;
  }

  .ttis-signature h2{
    font-size:34px;
  }

  .ttis-testimonial{
    font-size:24px;
  }

  .ttis-footer-inner{
    grid-template-columns:1fr 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 TABLETS / LARGE PHONES */
/* ========================================= */

@media(max-width:768px){

  .cruise-logo-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .cruise-logo img{
    height:65px;
  }

  .ttis-section{
    padding:56px 5%;
  }

  .ttis-centered h2{
    font-size:32px;
  }

  .ttis-card,
  .ttis-feature-box,
  .ttis-contact-box{
    padding:26px;
    border-radius:22px;
  }

}

/* ========================================= */
/* FOLDABLE / NARROW TABLET SCREENS */
/* ========================================= */

@media(max-width:680px){

  .ttis-hero{
    aspect-ratio:auto;
    min-height:560px;
    padding:70px 24px;
  }

  .ttis-hero-bg{
    object-position:center center !important;
  }

  .ttis-hero h1{
    font-size:38px;
  }

  .ttis-hero p{
    font-size:18px;
    line-height:1.55;
  }

  .ttis-hero-actions{
    flex-direction:column;
    align-items:flex-start;
  }

  .ttis-hero-actions .ttis-btn{
    width:100%;
    max-width:340px;
  }

}

/* ========================================= */
/* PHONES */
/* ========================================= */

@media(max-width:600px){

  .ttis-header{
    padding:9px 5%;
  }

  .ttis-logo img{
    width:44px;
  }

  .ttis-logo-text{
    font-size:20px;
    letter-spacing:-0.2px;
  }

  .ttis-topbar{
    justify-content:center;
    text-align:center;
    font-size:12px;
    padding:9px 5%;
  }

  .ttis-hero{
    min-height:540px;
    padding:66px 22px;
  }

  .ttis-hero h1{
    font-size:36px;
    line-height:1.08;
  }

  .ttis-hero p{
    font-size:17px;
  }

  .ttis-footer{
    padding:42px 20px 22px;
  }

  .ttis-footer-inner{
    grid-template-columns:1fr;
    gap:26px;
    text-align:center;
  }

  .ttis-social-icons{
    justify-content:center;
  }

}

/* ========================================= */
/* SMALL PHONES / GALAXY FOLD COVER WIDTHS */
/* ========================================= */

@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-hero{
    min-height:520px;
    padding:62px 5%;
  }

  .ttis-hero h1{
    font-size:33px;
  }

  .ttis-hero p{
    font-size:16.5px;
    line-height:1.5;
  }

  .ttis-section{
    padding:48px 4%;
  }

  .ttis-centered h2,
  .ttis-signature h2{
    font-size:29px;
  }

  .ttis-card,
  .ttis-feature-box,
  .ttis-contact-box{
    padding:24px;
    border-radius:20px;
  }

  .ttis-card h3{
    font-size:22px;
  }

  .ttis-btn{
    width:100%;
  }

  .ttis-image-card{
    min-height:340px;
  }

  .ttis-signature p{
    font-size:17px;
  }

  .ttis-testimonial{
    font-size:22px;
  }

}

/* ========================================= */
/* EXTRA NARROW PHONES */
/* ========================================= */

@media(max-width:390px){

  .ttis-logo-text{
    font-size:15.5px;
  }

  .ttis-logo img{
    width:34px;
  }

  .ttis-menu-toggle{
    width:36px;
  }

  .ttis-hero{
    min-height:500px;
    padding:58px 18px;
  }

  .ttis-hero h1{
    font-size:30px;
  }

  .ttis-hero p{
    font-size:16px;
  }

  .ttis-section{
    padding:44px 18px;
  }

  .ttis-centered h2,
  .ttis-signature h2{
    font-size:27px;
  }

}

/* ========================================= */
/* VERY NARROW FOLDABLE COVER SCREENS */
/* ========================================= */

@media(max-width:340px){

  .ttis-logo-text{
    font-size:14px;
  }

  .ttis-logo img{
    width:31px;
  }

  .ttis-hero{
    min-height:480px;
    padding:54px 16px;
  }

  .ttis-hero h1{
    font-size:28px;
  }

  .ttis-hero p{
    font-size:15.5px;
  }

}