/* ============================================================
   CanadaTripNow.com — style.css
   ============================================================ */

/* ----- @font-face ----- */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins-regular.woff2') format('woff2');
    font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins-semibold.woff2') format('woff2');
    font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins-bold.woff2') format('woff2');
    font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins-extrabold.woff2') format('woff2');
    font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat-regular.woff2') format('woff2');
    font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat-semibold.woff2') format('woff2');
    font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat-bold.woff2') format('woff2');
    font-weight: 700; font-style: normal; font-display: swap;
}

/* ----- CSS Variables ----- */
:root {
    --accent1: #005f73;
    --accent2: #94d2bd;
    --link: #028090;
    --link-hover: #05668d;
    --btn-bg: #02c39a;
    --btn-text: #ffffff;
    --nav-bg: #004346;
    --nav-link: #ffffff;
    --footer-bg: #004346;
    --footer-text: #ffffff;
    --footer-link: #ffffff;
    --accordion-bg: #94d2bd;
    --accordion-text: #004346;
    --fa-color: #004346;
    --card-header-bg: #005f73;
    --btn-outline: #005f73;
    --text-primary: #005f73;
}

/* ----- Base ----- */
*, *::before, *::after { box-sizing: border-box; }
body {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #333;
    background: #fff;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
}
a { color: var(--link); text-decoration: none; }
a:hover { color: var(--link-hover); text-decoration: underline; }

/* ----- Topbar ----- */
.topbar {
    background: #ffffff;
    border-bottom: 2px solid var(--accent2);
    padding: 10px 0;
}
.topbar .logo-wrap { display: flex; align-items: center; }
.topbar .logo-wrap a { text-decoration: none; }
.topbar .contact-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--accent1);
    font-weight: 600;
}
.topbar .contact-wrap i { color: var(--fa-color); font-size: 1.1rem; }
.topbar .contact-wrap a { color: var(--accent1); }
.topbar .contact-wrap a:hover { color: var(--link-hover); }

/* ----- Navbar ----- */
.navbar {
    background: var(--nav-bg) !important;
    padding: 0;
}
.navbar-brand { display: none; }
.navbar .nav-link {
    color: var(--nav-link) !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 14px 16px !important;
    letter-spacing: 0.03em;
    transition: background 0.2s, color 0.2s;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
    background: rgba(148,210,189,0.2);
    color: var(--accent2) !important;
}
.navbar .dropdown-menu {
    background: var(--nav-bg);
    border: 1px solid rgba(148,210,189,0.3);
    border-radius: 0 0 6px 6px;
    margin-top: 0;
}
.navbar .dropdown-item {
    color: var(--nav-link) !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.88rem;
    padding: 10px 18px;
}
.navbar .dropdown-item:hover {
    background: rgba(148,210,189,0.2);
    color: var(--accent2) !important;
}
.navbar-toggler {
    border-color: rgba(148,210,189,0.5);
    margin: 6px;
}
.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,255,255,0.9%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ----- Breadcrumbs ----- */
.breadcrumb-section {
    background: #f0f9f8;
    padding: 10px 0;
    border-bottom: 1px solid #d8eee9;
}
.breadcrumb { margin: 0; background: transparent; }
.breadcrumb-item a { color: var(--link); }
.breadcrumb-item.active { color: #666; }
.breadcrumb-item + .breadcrumb-item::before { color: #999; }

/* ----- Hero ----- */
.hero-section {
    position: relative;
    min-height: 520px;
    max-height: 570px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,67,70,0.72) 0%, rgba(0,95,115,0.55) 100%);
    z-index: 1;
}
.hero-section .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    width: 100%;
    padding: 60px 20px;
}
.hero-section h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    text-shadow: 2px 3px 8px rgba(0,0,0,0.5);
    margin-bottom: 16px;
}
.hero-section p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    text-shadow: 1px 2px 4px rgba(0,0,0,0.4);
    margin-bottom: 28px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}
.hero-small {
    min-height: 240px;
    max-height: 280px;
}
.hero-small h1 { font-size: clamp(1.5rem, 3vw, 2.3rem); }

/* ----- Buttons ----- */
.btn-primary-custom {
    background: var(--btn-bg);
    color: var(--btn-text);
    border: 2px solid var(--btn-bg);
    border-radius: 30px;
    padding: 12px 32px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-block;
}
.btn-primary-custom:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}
.btn-outline-custom {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 30px;
    padding: 12px 32px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-block;
}
.btn-outline-custom:hover {
    background: #fff;
    color: var(--accent1);
}
.btn-accent {
    background: var(--btn-bg);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 11px 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-block;
}
.btn-accent:hover { background: var(--accent1); color: #fff; }
.btn-outline-accent {
    background: transparent;
    color: var(--btn-outline);
    border: 2px solid var(--btn-outline);
    border-radius: 30px;
    padding: 10px 28px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-block;
}
.btn-outline-accent:hover {
    background: var(--btn-outline);
    color: #fff;
}

/* ----- Section basics ----- */
.section-pad { padding: 70px 0; }
.section-alt { background: #f0f9f8; }
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}
.section-title span { color: var(--btn-bg); }
.section-subtitle {
    color: #666;
    font-size: 1.05rem;
    max-width: 620px;
    margin: 0 auto 40px;
}
.section-divider {
    width: 60px; height: 4px;
    background: var(--btn-bg);
    border-radius: 2px;
    margin: 14px auto 36px;
}

/* ----- Cards ----- */
.card { border: none; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 18px rgba(0,0,0,0.09); transition: transform 0.25s, box-shadow 0.25s; height: 100%; }
.card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.13); }
.card-header-custom {
    background: var(--card-header-bg);
    color: #fff;
    padding: 16px 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}
.card-header-custom h5 { color: #fff; margin: 0; font-size: 1.05rem; }
.card img.card-img-top { height: 210px; object-fit: cover; }
.card .card-body { padding: 20px; }
.card .card-title { color: var(--text-primary); font-family: 'Montserrat', sans-serif; font-weight: 700; }

/* Tour cards price badge */
.price-badge {
    background: var(--btn-bg);
    color: #fff;
    border-radius: 20px;
    padding: 4px 14px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-block;
    margin-bottom: 8px;
}
.duration-badge {
    background: var(--accent2);
    color: var(--accent1);
    border-radius: 20px;
    padding: 4px 14px;
    font-weight: 600;
    font-size: 0.88rem;
    display: inline-block;
    margin-bottom: 8px;
    margin-left: 6px;
}

/* ----- Benefits cards ----- */
.benefit-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    transition: transform 0.25s;
    height: 100%;
}
.benefit-card:hover { transform: translateY(-4px); }
.benefit-card .icon-circle {
    width: 72px; height: 72px;
    background: var(--accent2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.benefit-card .icon-circle i {
    color: var(--fa-color);
    font-size: 1.7rem;
}
.benefit-card h5 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 10px;
}

/* ----- Parallax CTA ----- */
.parallax-cta {
    background-image: url('../img/hero.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 90px 0;
    text-align: center;
}
.parallax-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 43, 46, 0.72);
}
.parallax-cta .parallax-content {
    position: relative;
    z-index: 2;
    color: #fff;
}
.parallax-cta h2 {
    color: #fff;
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 800;
    text-shadow: 2px 3px 8px rgba(0,0,0,0.4);
    margin-bottom: 16px;
}
.parallax-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ----- Accordion ----- */
.accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 8px !important;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.accordion-button {
    background: var(--accordion-bg) !important;
    color: var(--accordion-text) !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
}
.accordion-button:not(.collapsed) {
    background: var(--accent1) !important;
    color: #fff !important;
    box-shadow: none;
}
.accordion-button::after {
    filter: invert(0);
}
.accordion-button:not(.collapsed)::after {
    filter: invert(1);
}
.accordion-body {
    background: #f8fdfc;
    color: #444;
    line-height: 1.7;
}

/* ----- Tabs ----- */
.nav-tabs .nav-link {
    color: var(--accent1);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border-radius: 8px 8px 0 0;
    font-size: 0.9rem;
}
.nav-tabs .nav-link.active {
    background: var(--accent1);
    color: #fff;
    border-color: var(--accent1);
}
.nav-tabs .nav-link:hover:not(.active) {
    background: var(--accent2);
    color: var(--accent1);
}
.tab-content { padding: 28px; background: #f8fdfc; border-radius: 0 8px 8px 8px; }

/* ----- Gallery ----- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.gallery-grid img {
    width: 100%; height: 180px; object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}
.gallery-grid img:hover { transform: scale(1.04); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ----- Table ----- */
.table-custom thead { background: var(--accent1); color: #fff; }
.table-custom tbody tr:nth-child(even) { background: #f0f9f8; }
.table-custom td, .table-custom th { padding: 12px 16px; }

/* ----- Pricing table ----- */
.pricing-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.1);
    text-align: center;
}
.pricing-card .pricing-header {
    background: var(--accent1);
    color: #fff;
    padding: 24px;
}
.pricing-card .pricing-header h4 { color: #fff; font-weight: 800; font-size: 2rem; }
.pricing-card .pricing-body { padding: 24px; }

/* ----- Info boxes ----- */
.info-box {
    background: #e8f7f4;
    border-left: 4px solid var(--btn-bg);
    border-radius: 0 8px 8px 0;
    padding: 18px 22px;
    margin-bottom: 20px;
}
.info-box i { color: var(--btn-bg); }

/* ----- Step indicator ----- */
.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
}
.step-num {
    width: 48px; height: 48px;
    background: var(--accent1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.step-content h5 { color: var(--text-primary); font-weight: 700; margin-bottom: 6px; }

/* ----- Tips cards ----- */
.tip-card { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 18px rgba(0,0,0,0.09); height: 100%; transition: transform 0.25s; }
.tip-card:hover { transform: translateY(-4px); }
.tip-card img { height: 200px; width: 100%; object-fit: cover; }
.tip-card-body { padding: 22px; }
.tip-card-body h5 { color: var(--text-primary); font-weight: 700; }
.tip-num {
    display: inline-block;
    background: var(--btn-bg);
    color: #fff;
    border-radius: 50%;
    width: 32px; height: 32px;
    text-align: center;
    line-height: 32px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

/* ----- Destination tiles ----- */
.dest-tile {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 180px;
    cursor: pointer;
}
.dest-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.dest-tile:hover img { transform: scale(1.08); }
.dest-tile .dest-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,43,46,0.8));
    color: #fff;
    padding: 14px 12px 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
}

/* ----- Contact ----- */
.contact-info-box {
    background: #f0f9f8;
    border-radius: 12px;
    padding: 36px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
}
.contact-info-box i { color: var(--accent1); }

/* ----- Footer ----- */
footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 50px 0 0;
}
footer h5, footer h6 {
    color: var(--accent2);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 18px;
}
footer p, footer li, footer address { color: rgba(255,255,255,0.85); font-size: 0.92rem; }
footer a { color: var(--footer-link); text-decoration: none; }
footer a:hover { color: var(--accent2); }
footer ul { list-style: none; padding: 0; }
footer ul li { margin-bottom: 8px; }
footer ul li a::before { content: '→ '; }
.footer-bottom {
    background: rgba(0,0,0,0.25);
    text-align: center;
    padding: 14px;
    margin-top: 40px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
}

/* ----- Animations ----- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ----- Responsive ----- */
@media (max-width: 991px) {
    .hero-section { min-height: 360px; max-height: 420px; }
    .parallax-cta { background-attachment: scroll; }
}
@media (max-width: 768px) {
    .hero-section { min-height: 280px; }
    .section-pad { padding: 48px 0; }
    .topbar .contact-wrap { justify-content: flex-start; margin-top: 8px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .hero-section h1 { font-size: 1.5rem; }
}

/* ----- Utilities ----- */
.text-accent1 { color: var(--accent1) !important; }
.text-accent2 { color: var(--accent2) !important; }
.text-btn { color: var(--btn-bg) !important; }
.bg-accent1 { background: var(--accent1) !important; }
.bg-accent2 { background: var(--accent2) !important; }
img { max-width: 100%; height: auto; }
.rounded-xl { border-radius: 14px !important; }
.shadow-soft { box-shadow: 0 4px 20px rgba(0,0,0,0.09) !important; }
