/* ============================================================
   TravelToCanada.net - Main Stylesheet
   Colors: #f40217 (red), #04559a (blue)
   Font: Montserrat
   ============================================================ */

/* ---- @font-face Montserrat (local WOFF2) ---- */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/montserrat-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/montserrat-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/montserrat-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/montserrat-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/montserrat-800.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/montserrat-900.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* ---- CSS Custom Properties ---- */
:root {
    --accent1: #f40217;
    --accent2: #04559a;
    --accent2-dark: #033d72;
    --accent2-light: #0568c0;
    --white: #ffffff;
    --light-bg: #f5f8fc;
    --lighter-bg: #eaf1f9;
    --dark-text: #1a2433;
    --gray-text: #4a5568;
    --section-bg1: #ffffff;
    --section-bg2: #f5f8fc;
    --section-bg3: #eaf1f9;
    --font: 'Montserrat', Arial, sans-serif;
    --transition: 0.3s ease;
    --shadow: 0 4px 20px rgba(4,85,154,0.12);
    --shadow-hover: 0 8px 32px rgba(4,85,154,0.22);
    --border-radius: 8px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    font-weight: 400;
    font-size: 1rem;
    color: var(--dark-text);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent2);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent1);
    text-decoration: none;
}

ul.list-styled {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ---- Typography ---- */
h1 {
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.2;
    color: var(--dark-text);
}
h2 {
    font-weight: 600;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.3;
    color: var(--dark-text);
}
h3 {
    font-weight: 500;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    line-height: 1.4;
    color: var(--dark-text);
}
h4 {
    font-weight: 400;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.5;
    color: var(--dark-text);
}
h5 {
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.5;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.75;
}

strong {
    font-weight: 700;
}

/* ---- Top Bar (header above nav) ---- */
.topbar {
    background: var(--white);
    border-bottom: 1px solid #e0e9f5;
    padding: 10px 0;
    min-height: 70px;
}

.topbar .logo-wrap img,
.topbar .logo-wrap picture img {
    max-width: 280px;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.topbar .contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.topbar .contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark-text);
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
}

.topbar .contact-item .icon {
    width: 32px;
    height: 32px;
    background: var(--accent1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.topbar .contact-item .icon svg {
    fill: var(--white);
    width: 16px;
    height: 16px;
}

.topbar .contact-item a {
    color: var(--dark-text);
    font-weight: 600;
}

.topbar .contact-item a:hover {
    color: var(--accent1);
}

/* ---- Navigation ---- */
.main-nav {
    background: var(--accent1);
    min-height: 52px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.main-nav .navbar {
    min-height: 52px;
    padding: 0;
}

.main-nav .navbar-brand {
    display: none;
}

.main-nav .navbar-toggler {
    border: 2px solid rgba(255,255,255,0.8);
    padding: 4px 8px;
    margin: 6px 0;
}

.main-nav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2c255%2c255%2c1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.main-nav .nav-link {
    color: var(--white) !important;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 14px 14px !important;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: background var(--transition), color var(--transition);
    position: relative;
    white-space: nowrap;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active,
.main-nav .nav-item.active > .nav-link {
    background: rgba(0,0,0,0.2);
    color: var(--white) !important;
}

.main-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 3px;
    background: var(--white);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after {
    transform: scaleX(1);
}

/* Dropdown */
.main-nav .dropdown-menu {
    background: var(--accent2-dark);
    border: none;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    padding: 8px 0;
    min-width: 220px;
    margin-top: 0;
}

.main-nav .dropdown-item {
    color: var(--white) !important;
    font-size: 0.87rem;
    font-weight: 500;
    padding: 10px 20px;
    transition: background var(--transition);
}

.main-nav .dropdown-item:hover {
    background: rgba(255,255,255,0.15);
    color: var(--white) !important;
}

.main-nav .dropdown-toggle::after {
    border-top-color: var(--white);
}

/* Mobile nav */
@media (max-width: 991.98px) {
    .main-nav .navbar-collapse {
        background: var(--accent1);
        padding: 0 15px 10px;
    }

    .main-nav .nav-link {
        padding: 10px 12px !important;
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }

    .main-nav .nav-link::after {
        display: none;
    }

    .main-nav .dropdown-menu {
        background: rgba(0,0,0,0.2);
        border-radius: 4px;
        margin: 0 0 6px 12px;
    }

    .main-nav .dropdown-item {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* ---- Hero Section ---- */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    max-height: 550px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--accent2-dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(4,61,114,0.80) 0%, rgba(244,2,23,0.45) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    padding: 60px 0;
}

.hero-content .hero-badge {
    display: inline-block;
    background: var(--accent1);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.hero-content h1 {
    color: var(--white);
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.2rem);
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
    margin-bottom: 16px;
    line-height: 1.15;
}

.hero-content .hero-lead {
    color: rgba(255,255,255,0.92);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 500;
    margin-bottom: 28px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

.hero-content .hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: 500px;
        max-height: none;
    }
    .hero-content {
        padding: 48px 0;
        text-align: center;
    }
    .hero-content .hero-cta {
        justify-content: center;
    }
}

/* ---- Buttons ---- */
.btn-primary-custom {
    background: var(--accent2);
    color: var(--white);
    border: 2px solid var(--accent2);
    padding: 12px 28px;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--border-radius);
    transition: all var(--transition);
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    font-family: var(--font);
    letter-spacing: 0.02em;
}
.btn-primary-custom:hover {
    background: var(--accent2-dark);
    border-color: var(--accent2-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary-custom {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 12px 28px;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--border-radius);
    transition: all var(--transition);
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    font-family: var(--font);
    letter-spacing: 0.02em;
}
.btn-secondary-custom:hover {
    background: var(--white);
    color: var(--accent1);
    transform: translateY(-2px);
}

.btn-red {
    background: var(--accent1);
    color: var(--white);
    border: 2px solid var(--accent1);
    padding: 12px 28px;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--border-radius);
    transition: all var(--transition);
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    font-family: var(--font);
}
.btn-red:hover {
    background: #c40014;
    border-color: #c40014;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline-primary {
    color: var(--accent1) !important;
    border-color: var(--accent1) !important;
    font-weight: 600;
    transition: all var(--transition);
}
.btn-outline-primary:hover {
    background: var(--accent1) !important;
    color: var(--white) !important;
}

/* Bootstrap overrides */
.btn-primary {
    background-color: var(--accent2) !important;
    border-color: var(--accent2) !important;
    font-family: var(--font);
    font-weight: 600;
}
.btn-primary:hover {
    background-color: var(--accent2-dark) !important;
    border-color: var(--accent2-dark) !important;
}

.text-primary { color: var(--accent1) !important; }
.bg-primary { background-color: var(--accent2) !important; }

/* ---- Sections ---- */
.section-pad {
    padding: 72px 0;
}

.section-pad-sm {
    padding: 48px 0;
}

section:nth-of-type(odd) .section-inner {
    background: var(--section-bg1);
}

.section-white { background: var(--white); }
.section-light { background: var(--light-bg); }
.section-lighter { background: var(--lighter-bg); }

.section-title {
    text-align: center;
    margin-bottom: 48px;
}

.section-title h2 {
    font-weight: 700;
    color: var(--accent2);
    margin-bottom: 12px;
}

.section-title .section-divider {
    width: 64px;
    height: 4px;
    background: var(--accent1);
    border-radius: 2px;
    margin: 0 auto 16px;
}

.section-title p {
    color: var(--gray-text);
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0 auto;
}

/* ---- Two-column sections ---- */
.two-col-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.two-col-section.reverse {
    direction: rtl;
}
.two-col-section.reverse > * {
    direction: ltr;
}

.two-col-section .col-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

@media (max-width: 767.98px) {
    .two-col-section {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .two-col-section.reverse {
        direction: ltr;
    }
    .two-col-section .col-img img {
        height: 240px;
    }
}

/* ---- Cards / Tour Cards ---- */
.card {
    border: 1px solid #e0e9f5;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    height: 100%;
    box-shadow: 0 2px 12px rgba(4,85,154,0.07);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.card-img-top {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-header {
    background: var(--accent2) !important;
    color: var(--white) !important;
    font-weight: 700;
    font-size: 1rem;
    border-bottom: none;
    padding: 14px 18px;
}

.card-header * {
    color: var(--white) !important;
}

.card-body {
    padding: 20px;
}

.card-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent2);
    margin-bottom: 10px;
}

.card-text {
    color: var(--gray-text);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.price-badge {
    display: inline-block;
    background: var(--accent1);
    color: var(--white);
    font-weight: 800;
    font-size: 1.1rem;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 12px;
}

/* ---- Tour featured badges ---- */
.badge-custom {
    display: inline-block;
    background: var(--lighter-bg);
    color: var(--accent2);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    margin: 2px;
}

/* ---- Parallax Section ---- */
.parallax-section {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4,61,114,0.78);
    z-index: 0;
}

.parallax-content {
    position: relative;
    z-index: 1;
    padding: 60px 0;
    text-align: center;
    color: var(--white);
    width: 100%;
}

.parallax-content h2 {
    color: var(--white);
    font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 16px;
}

.parallax-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 28px;
}

/* Mobile: disable fixed attachment for performance */
@supports (-webkit-touch-callout: none) {
    .parallax-section {
        background-attachment: scroll;
    }
}
@media (max-width: 767.98px) {
    .parallax-section {
        background-attachment: scroll;
    }
}

/* ---- Accordion ---- */
.accordion-item {
    border: 1px solid #e0e9f5;
    border-radius: var(--border-radius) !important;
    margin-bottom: 8px;
    overflow: hidden;
}

.accordion-button {
    background: var(--accent1) !important;
    color: var(--white) !important;
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font);
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-button:not(.collapsed) {
    background: #c40014 !important;
    color: var(--white) !important;
    box-shadow: none;
}

.accordion-body {
    background: var(--white);
    color: var(--dark-text);
    font-size: 0.97rem;
    line-height: 1.7;
    padding: 20px 24px;
}

/* ---- Benefits Section ---- */
.benefit-item {
    text-align: center;
    padding: 28px 20px;
    border-radius: var(--border-radius);
    background: var(--white);
    border: 1px solid #e0e9f5;
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition);
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: var(--lighter-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.benefit-icon svg {
    fill: var(--accent2);
    width: 32px;
    height: 32px;
}

.benefit-item h4 {
    font-weight: 700;
    color: var(--accent2);
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.benefit-item p {
    color: var(--gray-text);
    font-size: 0.92rem;
    margin: 0;
}

/* ---- Tips Cards ---- */
.tip-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(4,85,154,0.09);
    background: var(--white);
    border: 1px solid #e0e9f5;
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition);
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.tip-card .tip-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tip-card .tip-body {
    padding: 20px;
}

.tip-card .tip-num {
    display: inline-block;
    background: var(--accent1);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    margin-bottom: 8px;
}

.tip-card h4 {
    font-weight: 700;
    color: var(--accent2);
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.tip-card p {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin: 0 0 14px;
}

/* ---- Breadcrumbs ---- */
.breadcrumb-wrap {
    background: var(--lighter-bg);
    padding: 12px 0;
    border-bottom: 1px solid #dde8f5;
}

.breadcrumb {
    margin: 0;
    padding: 0;
    background: none;
    font-size: 0.87rem;
    flex-wrap: wrap;
}

.breadcrumb-item a {
    color: var(--accent2);
    font-weight: 600;
}

.breadcrumb-item a:hover {
    color: var(--accent1);
}

.breadcrumb-item.active {
    color: var(--gray-text);
    font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--accent2);
    content: "›";
    font-weight: 700;
    font-size: 1.1em;
}

/* ---- Page Hero (for subpages) ---- */
.page-hero {
    background: var(--accent2);
    padding: 48px 0 36px;
    color: var(--white);
}

.page-hero h1 {
    color: var(--white);
    font-weight: 800;
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    margin-bottom: 8px;
}

.page-hero p {
    color: rgba(255,255,255,0.88);
    font-size: 1.05rem;
    margin: 0;
}

/* ---- Footer ---- */
.footer {
    background: var(--accent2);
    color: var(--white);
    margin-top: 0 !important;
}

.footer-main {
    padding: 48px 0 24px;
}

.footer-logo img {
    max-width: 220px;
    max-height: 80px;
    object-fit: contain;
    margin-bottom: 16px;
    filter: brightness(10);
}

.footer h5 {
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--accent1);
    padding-bottom: 8px;
    display: inline-block;
}

.footer p,
.footer li,
.footer address {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    line-height: 1.7;
    font-style: normal;
}

.footer a {
    color: rgba(255,255,255,0.9) !important;
    text-decoration: none;
    transition: color var(--transition);
}

.footer a:hover {
    color: #ffffff !important;
    text-decoration: underline;
}

.footer .footer-menu a {
    display: block;
    color: rgba(255,255,255,0.85) !important;
    font-size: 0.9rem;
    padding: 4px 0;
    transition: color var(--transition), padding var(--transition);
}

.footer .footer-menu a:hover {
    color: var(--accent1) !important;
    padding-left: 6px;
}

.footer-bottom {
    background: rgba(0,0,0,0.25);
    padding: 16px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.7);
    font-size: 0.82rem;
    margin: 0;
}

/* Cookie info box in footer */
.cookie-info-box {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--border-radius);
    padding: 16px;
}

.cookie-info-box p {
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.6;
}

/* ---- Gallery ---- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 16/9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

/* ---- Icon List ---- */
.icon-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.icon-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.97rem;
    color: var(--dark-text);
}

.icon-list li .ic {
    color: var(--accent2);
    font-size: 1.1em;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ---- Inclusions boxes ---- */
.inclusions-box {
    background: var(--lighter-bg);
    border-left: 4px solid var(--accent2);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 20px 24px;
    margin-bottom: 20px;
}

.exclusions-box {
    background: #fff5f5;
    border-left: 4px solid var(--accent1);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 20px 24px;
    margin-bottom: 20px;
}

.inclusions-box h5,
.exclusions-box h5 {
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1rem;
}
.inclusions-box h5 { color: var(--accent2); }
.exclusions-box h5 { color: var(--accent1); }

/* ---- Pricing Table ---- */
.pricing-table {
    background: var(--white);
    border: 2px solid #e0e9f5;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.pricing-header {
    background: var(--accent2);
    color: var(--white);
    padding: 20px 24px;
    text-align: center;
}

.pricing-header h3 {
    color: var(--white);
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 4px;
}

.pricing-header p {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    margin: 0;
}

.pricing-body {
    padding: 24px;
}

/* ---- Stats / Numbers ---- */
.stat-box {
    text-align: center;
    padding: 28px 16px;
}

.stat-box .stat-num {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--accent1);
    line-height: 1;
    display: block;
}

.stat-box .stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-text);
    margin-top: 6px;
}

/* ---- CTA Strip ---- */
.cta-strip {
    background: var(--accent1);
    padding: 40px 0;
    text-align: center;
}

.cta-strip h3 {
    color: var(--white);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-strip p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
}

/* ---- Table styles ---- */
.table-custom {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.table-custom th {
    background: var(--accent2);
    color: var(--white);
    padding: 12px 16px;
    text-align: left;
    font-weight: 700;
}

.table-custom td {
    padding: 10px 16px;
    border-bottom: 1px solid #e0e9f5;
    color: var(--dark-text);
}

.table-custom tr:nth-child(even) td {
    background: var(--light-bg);
}

/* ---- Itinerary ---- */
.itinerary-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e0e9f5;
}

.itinerary-item:last-child {
    border-bottom: none;
}

.itinerary-day {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: var(--accent2);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.itinerary-day .day-label {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
}

.itinerary-day .day-num {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
}

.itinerary-body h5 {
    font-weight: 700;
    color: var(--accent2);
    margin-bottom: 6px;
}

.itinerary-body p {
    color: var(--gray-text);
    font-size: 0.93rem;
    margin: 0;
}

/* ---- Contact Info ---- */
.contact-box {
    background: var(--lighter-bg);
    border-radius: var(--border-radius);
    padding: 32px;
    border-left: 5px solid var(--accent2);
}

.contact-box h4 {
    font-weight: 700;
    color: var(--accent2);
    margin-bottom: 20px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

.contact-detail .icon {
    width: 40px;
    height: 40px;
    background: var(--accent2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail .icon svg {
    fill: var(--white);
    width: 18px;
    height: 18px;
}

.contact-detail .text {
    color: var(--dark-text);
    font-size: 0.97rem;
    line-height: 1.5;
}

.contact-detail .text strong {
    display: block;
    color: var(--accent2);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

/* ---- Animations ---- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-up {
    animation: fadeInUp 0.6s ease both;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

/* Scroll observer */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Number/Check list styles ---- */
.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 8px;
    font-size: 0.97rem;
    line-height: 1.6;
    color: var(--dark-text);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent2);
    font-weight: 900;
    font-size: 1em;
}

.cross-list {
    list-style: none;
    padding: 0;
}

.cross-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 8px;
    font-size: 0.97rem;
    line-height: 1.6;
    color: var(--gray-text);
}

.cross-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent1);
    font-weight: 900;
    font-size: 1em;
}

/* ---- Responsive Utilities ---- */
@media (max-width: 575.98px) {
    .section-pad { padding: 48px 0; }
    .hero-content h1 { font-size: 1.8rem; }
    .card-img-top { height: 180px; }
}

/* ---- Cookie Bar ---- */
#cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(4,61,114,0.97);
    color: var(--white);
    padding: 16px 0;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

#cookie-bar p {
    color: rgba(255,255,255,0.9);
    font-size: 0.88rem;
    margin: 0;
}

/* ---- Scroll to Top ---- */
#scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--accent1);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 998;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: background var(--transition), transform var(--transition);
}

#scroll-top:hover {
    background: #c40014;
    transform: translateY(-3px);
}

#scroll-top.visible {
    display: flex;
}
