/* ==========================
   Global Page Styles
========================== */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: #1C3D60; /* default brand text color */
    background: #ffffff; /* neutral background behind sections */
}

/* ==========================
   Page Wrapper – Main Content Box
========================== */
.page-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

/* ==========================
   Hero Section – Balanced Layout
========================== */
.hero-section, .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to bottom, #ffffff 0%, #aef4fc 50%, #2A73B8 100%);
    border-radius: 12px;
    padding: 25px 20px;       /* compact padding */
    margin-bottom: 40px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08), 0 0 30px rgba(0,0,0,0.03);
    background-clip: padding-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: auto;          /* adapt to content */
    max-height: none;
    box-sizing: border-box;
}

/* Hero Logo – much larger & prominent */
.hero-logo {
    display: block;
    max-width: 450px;          /* larger on desktop */
    width: 100%;
    height: auto;
    margin: 0 auto 15px auto;  /* space below logo */
}

/* Hero Headings and Subtext */
.hero h1 {
    margin: 5px 0 10px 0;      /* tighter spacing */
    font-size: 2rem;
}

.hero p {
    margin: 5px 0 12px 0;
    font-size: 1.1rem;
    line-height: 1.5;
}

.hero-subtext {
    font-size: 0.95rem;
    color: #1C3D60;
    margin-top: 8px;
}

/* Hero Button Wrapper */
.hero-button-wrapper {
    text-align: center;
    margin: 10px 0 12px 0;
}

.hero-button-wrapper .btn-primary {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1.00rem;
    border-radius: 8px;
    background-color: #2A73B8;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.hero-button-wrapper .btn-primary:hover {
   background-color: #3FCFE8;
}

.review-highlight {
    background:#f8fafc;
    border-left:5px solid #0d4f8b;
    padding:20px;
    margin:20px 0;
    border-radius:10px;
}

.review-highlight h3 {
    margin-top:0;
}

/* ==========================================================
   Info Box
   Reusable across GetCruiseInfo.com
   ========================================================== */


.info-box {
    margin: 30px 0;
    padding: 24px;
    background: #f4f7fb;
    border-left: 5px solid #0d4f8b;
    border-radius: 10px;
}

.info-box h3 {
    margin-top: 0;
    margin-bottom: 12px;
    color: #0d4f8b;
}

.info-box p:last-child {
    margin-bottom: 0;
}

.ship-comparison-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:18px;
    margin:20px 0 32px;
}

.ship-comparison-card{
    background:#fff;
    border:1px solid #d9e5ec;
    border-top:4px solid #2A73B8;
    border-radius:10px;
    overflow:hidden;
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease;
}

.ship-comparison-card:hover{
    transform:translateY(-2px);
    border-color:#2A73B8;
    box-shadow:0 8px 18px rgba(0,0,0,.08);
}

.ship-comparison-card-link{
    display:flex;
    flex-direction:column;
    height:100%;
    padding:16px 18px;
    color:inherit;
    text-decoration:none;
}

.ship-comparison-card-link:hover,
.ship-comparison-card-link:focus{
    color:inherit;
    text-decoration:none;
}

.ship-comparison-card h4{
    margin:0 0 4px;
    font-size:1.08rem;
    line-height:1.3;
    font-weight:700;
    color:#1C3D60;
}

.ship-comparison-card:hover h4{
    color:#2A73B8;
}

.ship-comparison-meta{
    margin:0 0 10px;
    color:#666;
    font-size:.84rem;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.03em;
}

.ship-comparison-card p{
    margin:0;
    color:#1C3D60;
    font-size:.95rem;
    line-height:1.5;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:3;
    overflow:hidden;
}

@media (max-width:768px){
    .ship-comparison-grid{
        grid-template-columns:1fr;
        gap:14px;
    }

    .ship-comparison-card-link{
        padding:15px;
    }

    .ship-comparison-card h4{
        font-size:1.02rem;
    }
}

/* ==========================================================
   Comparison Grid
   Reusable across GetCruiseInfo.com
   ========================================================== */

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 30px 0;
}

.comparison-card {
    background: #ffffff;
    border: 1px solid #d9e5ec;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    transition: transform .2s ease,
                box-shadow .2s ease,
                border-color .2s ease;
}

.comparison-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,.12);
    border-color: #4ca6c9;
}

.comparison-card h3 {
    margin: 0 0 14px;
    font-size: 1.25rem;
    line-height: 1.3;
}

.comparison-card h3 a {
    color: #005b84;
    text-decoration: none;
}

.comparison-card h3 a:hover {
    text-decoration: underline;
}

.comparison-card p {
    margin: 10px 0;
    line-height: 1.6;
}

.comparison-card p:last-child {
    margin-bottom: 0;
}

/* Mobile */

@media (max-width: 768px) {

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .comparison-card {
        padding: 18px;
    }

}

/* ==========================================
   Free OBC Offer
   ========================================== */


.review-promo {
    background: #f7fbff;
    border: 2px solid #2A73B8;
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    text-align: center;
    box-shadow: 0 4px 12px rgba(42, 115, 184, 0.10);
}

.review-promo h3 {
    margin-top: 0;
}

.review-promo .small-text {
    font-size: 0.8rem;
    color: #666;
}

/* ==================================================
   Ship Facts Table
================================================== */

.ship-facts-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 30px 0;
    background: #ffffff;
    border: 1px solid #d9e6ec;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.ship-facts-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e8eef2;
    text-align: left;
}

.ship-facts-table tr:last-child td {
    border-bottom: none;
}

.ship-facts-table td:first-child {
    width: 35%;
    font-weight: 700;
    background: #f7fafc;
    color: #0b3d5c;
}

.ship-facts-table td:last-child {
    color: #333;
}

@media (max-width: 768px) {

    .ship-facts-table td {
        padding: 10px 12px;
        font-size: 0.95rem;
    }

    .ship-facts-table td:first-child {
        width: 40%;
    }

}

/* ==========================================
   Global Primary Button
========================================== */

.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background-color: #2A73B8;
    color: #ffffff !important;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.btn-primary:hover {
    background-color: #3FCFE8;
    color: #ffffff !important;
    text-decoration: none !important;
}

/* ==========================================
   Traveler Reviews / UGC
   ========================================== */

.ship-reviews {
    margin: 50px 0;
}

.review-card {
    background: #f8fafc;
    border: 1px solid #dbe3ec;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.review-card p:last-child {
    margin-bottom: 0;
}

.review-card em {
    display: block;
    margin-top: 15px;
    color: #6b7280;
    font-size: 0.95rem;
}

.review-submit-link {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 18px;
    background: #0f4c81;
    color: #fff !important;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.review-submit-link:hover {
    color: #fff !important;
    opacity: 0.9;
}

.ship-reviews .review-cta {
    text-align: center;
    margin-top: 20px;
}

.review-certify {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin: 20px 0;
}

.review-certify input[type="checkbox"] {
    width: auto;
    margin: 0;
    flex: 0 0 auto;
}

.review-certify label {
    margin: 0;
    font-weight: 600;
}

.success-message {
    background: #ecfdf5;
    border: 1px solid #10b981;
    color: #065f46;
    padding: 16px 20px;
    border-radius: 8px;
    margin: 20px 0 30px;
    font-size: 1rem;
}

.review-cta {
    text-align: center;
    margin: 25px 0 40px;
}

.sail-date-group {
    display: flex;
    gap: 15px;
}

.sail-date-group select {
    flex: 1;
}

.ugc-card {
background: #f8fafc;
border-left: 4px solid #0b5cab;
padding: 18px 20px;
margin: 20px 0;
border-radius: 10px;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.ugc-quote {
margin: 0 0 12px 0;
font-size: 1.02rem;
line-height: 1.6;
}

.ugc-meta {
color: #666;
font-size: 0.95rem;
}
.ugc-form {
    background: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
}

.status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: bold;
}

.status-approved {
    background: #dcfce7;
    color: #166534;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
}

.status-rejected {
    background: #fee2e2;
    color: #991b1b;
}

/* ==========================
   SEO Content Section
========================== */
.seo-content {
    background: linear-gradient(to bottom, #ffffff 0%, #c8f7ff 50%, #3FCFE8 100%);
    border-radius: 12px;
    padding: 40px 30px;
    margin-bottom: 40px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08), 0 0 30px rgba(0,0,0,0.03);
    background-clip: padding-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.seo-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
}

/* ==========================
   Cruise Form Section
========================== */
.cruise-form {
    background: linear-gradient(to bottom, #ffffff 0%, #e0f9ff 50%, #2A73B8 100%);
    border-radius: 12px;
    padding: 40px 30px;
    margin-bottom: 40px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08), 0 0 30px rgba(0,0,0,0.03);
    background-clip: padding-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

/* Hover lift effect for all sections */
.hero-section:hover,
.seo-content:hover,
.cruise-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15), 0 0 35px rgba(0,0,0,0.05);
}

/* ==========================
   Headings
========================== */
.page-wrapper h1,
.page-wrapper h2,
.page-wrapper h3,
.page-wrapper h4,
.page-wrapper h5,
.page-wrapper h6 {
    margin: 20px 0 10px 0;
    font-weight: 600;
    color: #1C3D60;
}

/* Paragraphs */
.page-wrapper p {
    margin: 10px 0;
    line-height: 1.6;
    color: #1C3D60;
}

/* Lists */
.page-wrapper ul,
.page-wrapper ol {
    padding-left: 35px;
    margin: 10px 0;
    text-align: left;
    list-style: disc;
    color: #1C3D60;
}

.page-wrapper ul li,
.page-wrapper ol li {
    margin: 5px 0;
}

/* Links & Buttons */
.page-wrapper a {
    color: #2A73B8;
    text-decoration: none;
}

.page-wrapper a:hover {
    text-decoration: underline;
}

.page-wrapper button {
    padding: 10px 25px;
    margin: 10px 0;
    border: none;
    background-color: #2A73B8;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-wrapper button:hover {
    background-color: #1C3D60;
}

/* Section-specific buttons */
.hero-section button {
    background-color: #3FCFE8;
}

.hero-section button:hover {
    background-color: #2A73B8;
}

/* ==========================
   Forms
========================== */
.page-wrapper form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    text-align: left;
}

.page-wrapper label {
    font-weight: 600;
    margin-bottom: 5px;
}

.page-wrapper input,
.page-wrapper select,
.page-wrapper textarea {
    width: 100%;
    max-width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

/* Cruise Form Button */
.cruise-form button {
    max-width: 250px;
    padding: 12px 25px;
    border-radius: 8px;
    background-color: #2A73B8;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    align-self: flex-start;
}

.cruise-form button:hover {
    background-color: #3FCFE8;
}

/* Images in all sections */
.hero-section img,
.seo-content img,
.cruise-form img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
}

/* ==========================
   Responsive Adjustments
========================== */
@media (max-width: 768px) {
    .page-wrapper {
        padding: 30px 15px;
    }

    .hero-section {
        padding: 20px 15px;
    }

    .hero-logo {
        max-width: 400px;   /* larger logo on mobile */
        margin-bottom: 12px;
    }

    .hero h1 {
        font-size: 1.5rem;
        margin: 5px 0 8px 0;
    }

    .hero p {
        font-size: 1rem;
        margin: 5px 0 10px 0;
    }

    .hero-button-wrapper {
        margin: 8px 0 10px 0;
    }

    .hero-button-wrapper .btn-primary {
        width: 100%;
        font-size: 1.1rem;
        padding: 12px 20px;
    }

    .hero-subtext {
        font-size: 0.85rem;
        margin-top: 6px;
    }

    .seo-content,
    .cruise-form {
        padding: 30px 20px;
    }

    .page-wrapper input,
    .page-wrapper select,
    .page-wrapper textarea {
        max-width: 100%;
    }

    .cruise-form button {
        width: 100%;
        align-self: center;
    }
}
/* ===========================================
   HERO CTA BUTTON
   =========================================== */

.hero-cta-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 30px;
    background-color: #0057D8;
    color: #ffffff !important;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none !important;
    box-shadow: 0 8px 20px rgba(0,87,216,0.25);
    transition: background-color 0.2s ease, transform 0.25s ease;
}

.hero-cta-btn:hover {
    background-color: #003C91;
    transform: translateY(-3px);
}

/* ==========================================
   Cruise Line Comparison Table
========================================== */

.table-wrapper {
    width: 100%;
    overflow-x: auto;   /* Prevent mobile squish */
    margin: 25px 0;
}

.cruise-comparison {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    min-width: 720px;   /* Prevent cramped compression */
}

/* Header */
.cruise-comparison thead {
    background-color: #2A73B8;
    color: #ffffff;
}

.cruise-comparison th {
    text-align: left;
    padding: 16px 18px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

/* Body Cells */
.cruise-comparison td {
    padding: 16px 18px;
    border-bottom: 1px solid #e6eef5;
    font-size: 0.95rem;
    vertical-align: middle;
}

/* Zebra Striping */
.cruise-comparison tbody tr:nth-child(even) {
    background-color: #f8fbff;
}

/* Row Hover */
.cruise-comparison tbody tr:hover {
    background-color: #e9f4ff;
    transition: background-color 0.2s ease;
}

/* Make first column slightly stronger */
.cruise-comparison td:first-child {
    font-weight: 600;
}

/* Responsive tightening */
@media (max-width: 768px) {
    .cruise-comparison th,
    .cruise-comparison td {
        padding: 12px 14px;
        font-size: 0.9rem;
    }
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-column {
    flex: 1;
}

.form-column label {
    display: block;
    margin-bottom: 5px;
}

.form-column select {
    width: 100%;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 10px;
    }
}