/* ========================================
   Finikas Cruises - Main Stylesheet
   Converted from WordPress Travolo Theme
   ======================================== */

/* Self-hosted Jost font */
@font-face {
    font-family: 'Jost';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('../fonts/jost-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Jost';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('../fonts/jost-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
    --primary-color: #cf1319;
    --secondary-color: #0f2f62;
    --title-color: #1C1C1C;
    --body-color: #505050;
    --body-bg: #ffffff;
    --smoke-color: #F7F7F7;
    --border-color: #FFCCB1;
    --white: #ffffff;
    --black: #000000;
    --font-family: 'Jost', sans-serif;
}

/* ---- Reset & Base ---- */
* { box-sizing: border-box; }

body {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    color: var(--body-color);
    background: var(--body-bg);
    line-height: 1.7;
    margin: 0;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body.mobile-menu-open {
    overflow: hidden;
    touch-action: none;
}

/* ---- Lightweight layout utilities (Bootstrap replacement) ---- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.row > [class*="col-"] {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.col-6 { flex: 0 0 50%; max-width: 50%; }

.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }
.text-center { text-align: center !important; }
.justify-content-center { justify-content: center !important; }
.align-items-center { align-items: center !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }

.form-control {
    display: block;
    width: 100%;
    min-height: 48px;
    padding: 12px 15px;
    border: 1px solid #d8d8d8;
    border-radius: 5px;
    background: var(--white);
    color: var(--title-color);
    font: inherit;
    line-height: 1.5;
}

textarea.form-control {
    min-height: 160px;
    resize: vertical;
}

.form-control:focus {
    outline: 0;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(207, 19, 25, 0.12);
}

@media (min-width: 768px) {
    .col-md-3 { flex: 0 0 25%; max-width: 25%; }
    .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-md-6 { flex: 0 0 50%; max-width: 50%; }
    .col-md-12 { flex: 0 0 100%; max-width: 100%; }
    .d-md-none { display: none !important; }
    .d-md-block { display: block !important; }
}

@media (min-width: 992px) {
    .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
    .col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-lg-9 { flex: 0 0 75%; max-width: 75%; }
    .d-lg-none { display: none !important; }
    .d-lg-block { display: block !important; }
    .mb-lg-0 { margin-bottom: 0 !important; }
}

a { color: var(--primary-color); text-decoration: none; transition: all 0.3s; }
a:hover { color: var(--secondary-color); text-decoration: none; }
img { max-width: 100%; height: auto; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-family); color: var(--title-color); font-weight: 700; line-height: 1.3; margin-bottom: 15px; }
h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
p { margin-bottom: 15px; }
ul { list-style: none; padding: 0; margin: 0; }

/* ---- Skip Link ---- */
.skip-link {
    position: absolute; top: -100px; left: 0;
    background: var(--secondary-color); color: var(--white);
    padding: 10px 20px; z-index: 10000;
    transition: top 0.3s;
}
.skip-link:focus { top: 0; color: var(--white); }

/* ======== TOP BAR ======== */
.top-bar {
    background: var(--secondary-color);
    padding: 8px 0;
}
.top-bar-inner {
    display: flex; justify-content: flex-start; align-items: center;
}
.header-social a {
    color: var(--white); margin-right: 15px; font-size: 14px;
    transition: color 0.3s;
}
.header-social a:hover { color: var(--primary-color); }

/* ======== HEADER DESKTOP ======== */
.header-desktop {
    background: var(--white);
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
}
.header-logo img { max-height: 70px; width: auto; height: auto; }
.header-info {
    display: flex; gap: 25px; align-items: center; justify-content: flex-end;
}
.info-item {
    display: flex; align-items: center; gap: 6px;
    font-size: 14px; color: var(--body-color);
}
.info-item a { color: var(--body-color); font-weight: 500; }
.info-item a:hover { color: var(--primary-color); }
.info-sep { color: #ccc; margin: 0 2px; }

/* ======== HEADER MOBILE ======== */
.header-mobile {
    background: var(--white);
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-mobile-inner {
    display: flex; align-items: center; justify-content: space-between;
}
.header-mobile .header-logo img { max-height: 50px; width: auto; height: auto; }
.mobile-menu-toggle {
    background: none; border: none; font-size: 24px;
    color: var(--secondary-color); cursor: pointer;
    padding: 10px 12px; min-width: 48px; min-height: 48px;
}

/* ======== MOBILE MENU OVERLAY ======== */
.mobile-menu-wrapper {
    position: fixed; top: 0; right: -100%; width: min(100%, 360px); height: 100vh;
    background: var(--secondary-color); z-index: 9999;
    transition: right 0.3s ease; overflow-y: auto;
}
.mobile-menu-wrapper.active { right: 0; }
.mobile-menu-area { padding: 30px 20px; }
.mobile-menu-close {
    background: none; border: none; color: var(--white);
    font-size: 24px; cursor: pointer; position: absolute;
    top: 15px; right: 15px;
}
.mobile-logo { margin-bottom: 30px; }
.mobile-logo img { max-height: 50px; }
.mobile-nav ul { list-style: none; padding: 0; }
.mobile-nav > ul > li { border-bottom: 1px solid rgba(255,255,255,0.1); }
.mobile-nav-item {
    position: relative;
    display: flex;
    align-items: center;
}
.mobile-nav a {
    color: var(--white); display: block; padding: 14px 0;
    font-size: 17px; font-weight: 500;
    min-height: 48px; /* touch-friendly target */
}
.mobile-nav-item > a {
    flex: 1;
    padding-right: 56px;
}
.mobile-nav a:hover { color: var(--primary-color); }
.mobile-submenu-toggle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    min-width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.mobile-submenu-toggle:hover,
.mobile-submenu-toggle:focus-visible {
    background: rgba(255,255,255,0.16);
    color: var(--primary-color);
}
.mobile-submenu-toggle i {
    font-size: 16px;
    transition: transform 0.3s ease;
}
.mobile-nav .has-children.is-open > .mobile-nav-item .mobile-submenu-toggle i {
    transform: rotate(180deg);
}
.mobile-nav .sub-menu {
    display: none;
    padding: 0 0 12px 15px;
}
.mobile-nav .sub-menu a { font-size: 14px; font-weight: 400; }
.mobile-menu-contact {
    margin-top: 25px; padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu-contact a {
    color: rgba(255,255,255,0.8); display: block; padding: 8px 0;
    font-size: 15px;
}
.mobile-menu-contact a:hover { color: var(--primary-color); }
.mobile-menu-contact i { width: 20px; margin-right: 8px; color: var(--primary-color); }
.mobile-menu-social {
    margin-top: 20px; display: flex; gap: 10px;
}
.mobile-menu-social a {
    width: 42px; height: 42px; display: inline-flex;
    align-items: center; justify-content: center;
    background: rgba(255,255,255,0.1); border-radius: 50%;
    color: var(--white); font-size: 16px; transition: all 0.3s;
}
.mobile-menu-social a:hover { background: var(--primary-color); }
.mobile-menu-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); z-index: 9998;
    display: none;
}
.mobile-menu-overlay.active { display: block; }

/* ======== MAIN NAVIGATION ======== */
.main-nav {
    background: var(--secondary-color);
    position: relative; z-index: 100;
    transition: box-shadow 0.3s;
}
.main-nav.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    animation: slideDown 0.3s ease;
}
@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}
.nav-inner {
    display: flex; align-items: center; justify-content: center; position: relative;
}
.nav-sticky-logo {
    display: none; position: absolute; left: 15px; top: 50%; transform: translateY(-50%);
    color: var(--white);
}
.nav-sticky-logo img { height: 40px; width: auto; }
.main-nav.sticky .nav-sticky-logo { display: block; }
.nav-menu { flex: 1; display: flex; justify-content: center; }
.main-menu {
    display: flex; list-style: none; padding: 0; margin: 0;
}
.nav-actions { position: absolute; right: 15px; }
.main-menu > li > a {
    color: var(--white); padding: 15px 20px; display: block;
    font-size: 16px; font-weight: 500;
    transition: all 0.3s; position: relative;
}
.main-menu > li > a:hover,
.main-menu > li.active > a {
    color: #ff6b6b;
}
.main-menu > li.has-dropdown { position: relative; }
.dropdown-menu-custom {
    position: absolute; top: 100%; left: 0;
    background: var(--white); min-width: 280px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 10px 0; border-radius: 0 0 5px 5px;
    opacity: 0; visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 1000;
}
.main-menu > li.has-dropdown:hover .dropdown-menu-custom {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu-custom li a {
    color: var(--title-color); padding: 8px 20px; display: block;
    font-size: 15px; transition: all 0.3s;
}
.dropdown-menu-custom li a:hover {
    color: var(--primary-color); padding-left: 25px;
}
.main-menu > li.nav-social-item { display: flex; flex-direction: row; align-items: center; gap: 8px; padding: 0 15px; }
.main-menu > li.nav-social-item > a {
    color: var(--white); font-size: 15px; width: 34px; height: 34px;
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0; border: 1px solid rgba(255,255,255,0.3); border-radius: 50%;
    transition: all 0.3s;
}
.main-menu > li.nav-social-item > a:hover { background: var(--primary-color); border-color: var(--primary-color); color: var(--white); }
.btn-contact {
    background: var(--primary-color); color: var(--white) !important;
    padding: 10px 25px; border-radius: 5px; font-weight: 600;
    font-size: 15px; display: inline-block;
    transition: background 0.3s;
}
.btn-contact:hover { background: var(--secondary-color); color: var(--white) !important; }
.btn-contact i { margin-left: 5px; font-size: 12px; }

/* ======== BREADCRUMB / PAGE HEADER ======== */
.breadcrumb-area {
    background-image: url('../images/homepage/corfu-cruise-breadcrumb-hero-mobile.webp');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    padding: 80px 0;
    position: relative;
}
.breadcrumb-area--homepage {
    background-image: none;
    overflow: hidden;
}
.breadcrumb-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
}
.breadcrumb-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.breadcrumb-area::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
}
.breadcrumb-content {
    position: relative; z-index: 1; text-align: center;
}
.breadcrumb-title {
    color: var(--white); font-size: 48px; font-weight: 700;
    margin: 0;
}

/* ======== SECTION TITLES ======== */
.sec-subtitle {
    color: var(--primary-color); font-size: 16px; font-weight: 600;
    text-transform: uppercase; display: block; margin-bottom: 10px;
    letter-spacing: 1px;
}
.sec-title {
    font-size: 42px; color: var(--title-color); font-weight: 700;
    line-height: 1.2; margin-bottom: 15px;
}
.sec-text {
    font-size: 16px; color: var(--body-color); line-height: 1.8;
    max-width: 600px;
}
.title-area { margin-bottom: 30px; }

/* ======== BUTTONS ======== */
.vs-btn {
    display: inline-block; padding: 14px 35px; font-size: 16px;
    font-weight: 600; border-radius: 5px; cursor: pointer;
    transition: all 0.3s; border: none; text-align: center;
}
.vs-btn.style7 {
    background: var(--primary-color); color: var(--white);
}
.vs-btn.style7:hover {
    background: var(--secondary-color); color: var(--white);
}
.vs-btn.style5 {
    background: var(--primary-color); color: var(--white);
    font-size: 18px; padding: 16px 40px;
}
.vs-btn.style5:hover { background: var(--white); color: var(--primary-color); }
.btn-subscribe {
    background: var(--primary-color); color: var(--white);
    border: none; padding: 12px 30px; font-weight: 600;
    cursor: pointer; transition: background 0.3s;
    font-family: var(--font-family); font-size: 16px;
}
.btn-subscribe:hover { background: #a60f14; }

.section-pad-60 {
    padding: 60px 0;
}
.section-pad-80 {
    padding: 80px 0;
}
.section-pad-top-80 {
    padding: 80px 0 40px;
}
.section-pad-bottom-80 {
    padding: 30px 0 80px;
}
.section-pad-smoke {
    background: var(--smoke-color);
}
.section-pad-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}
.content-narrow-center {
    margin: 0 auto;
}
.content-max-700 {
    max-width: 700px;
}
.content-max-780 {
    max-width: 780px;
}
.content-max-800 {
    max-width: 800px;
}
.content-full {
    max-width: 100%;
}
.section-row-gap-30 {
    margin-top: 30px;
}
.section-row-gap-40 {
    margin-top: 40px;
}
.btn-wrapper-spaced-sm {
    margin-top: 20px;
}
.btn-wrapper-spaced {
    margin-top: 30px;
}
.tour-book-button {
    width: 100%;
    text-align: center;
    margin-top: 15px;
}
.icon-success {
    color: var(--primary-color);
}
.icon-danger {
    color: #dc3545;
}
.list-disc {
    list-style: disc;
    padding-left: 20px;
}
.vs-card-label {
    margin: 10px 0 5px;
    font-weight: 600;
}
.vs-card-note {
    font-size: 13px;
    margin-top: 5px;
}
.blog-featured-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.blog-featured-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 12px;
}
.blog-featured-title {
    font-size: 1rem;
    font-weight: 600;
}
.blog-featured-excerpt {
    font-size: 0.9rem;
    color: #666;
}

/* ======== IMAGE BOX (About Section) ======== */
.image-box-section { padding: 80px 0; overflow-x: clip; }
.image-box1 {
    position: relative; padding-right: 30px;
}
.image-box1 .img1 {
    width: 100%; border-radius: 10px;
    display: block;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}
.image-box1 .img2 {
    position: absolute; bottom: -30px; right: 0;
    width: 45%; border-radius: 10px;
    border: 5px solid var(--white);
}
.media-box1, .media-box2 {
    position: absolute; background: var(--primary-color); color: var(--white);
    padding: 15px 20px; border-radius: 10px; text-align: center;
}
.media-box1 { top: 20px; left: -20px; }
.media-box2 { bottom: 30px; left: 20px; }
.media-info {
    font-size: 36px; font-weight: 700; display: block; line-height: 1;
}
.media-text {
    font-size: 14px; margin: 0;
}

/* ======== ABOUT / CHECKLIST ======== */
.about-list1 {
    list-style: none; padding: 0; margin: 20px 0;
}
.about-list1 li {
    padding: 8px 0 8px 25px; position: relative;
    font-size: 16px; color: var(--body-color);
}
.about-list1 li::before {
    content: '\f00c'; font-family: 'Font Awesome 5 Free';
    font-weight: 900; position: absolute; left: 0;
    color: var(--primary-color);
}

/* ======== TESTIMONIALS ======== */
.testimonial-section {
    background: var(--smoke-color); padding: 80px 0;
}
.testi-style2 {
    background: var(--white); border-radius: 10px;
    padding: 30px; margin: 15px 0; position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.testi-text {
    font-size: 15px; color: var(--body-color); line-height: 1.8;
    font-style: italic; margin-bottom: 15px;
}
.testi-rating { margin-bottom: 15px; }
.testi-rating i { color: #f5b301; font-size: 14px; margin-right: 2px; }
.testi-name {
    font-size: 18px; font-weight: 700; color: var(--title-color);
    margin-bottom: 5px;
}
.testi-degi {
    font-size: 14px; color: var(--primary-color); font-weight: 500;
    display: block; margin-bottom: 15px;
}
.testi-avater {
    width: 60px; height: 60px; border-radius: 50%; overflow: hidden;
}
.testi-avater img {
    width: 100%; height: 100%; object-fit: cover;
}

/* ======== HERO SLIDER ======== */
.hero-section {
    position: relative; overflow: hidden; max-height: 350px;
}
@media (min-width: 768px) { .hero-section { max-height: 450px; } }
@media (min-width: 1024px) { .hero-section { max-height: 600px; } }
.hero-slide {
    position: relative; height: 600px;
    background-size: cover; background-position: center;
    display: flex !important; align-items: center;
}
.hero-slide::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
}
.hero-content {
    position: relative; z-index: 1;
}
.hero-content--tour {
    max-width: 560px;
    padding: 28px 32px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(16, 47, 98, 0.78), rgba(16, 47, 98, 0.42));
}
.hero-subtitle {
    color: var(--white); font-size: 16px; font-weight: 500;
    display: block; margin-bottom: 10px;
    text-transform: uppercase; letter-spacing: 2px;
}
.hero-title {
    color: var(--white); font-size: 56px; font-weight: 700;
    margin-bottom: 25px; line-height: 1.2;
}
.hero-slider-nav {
    position: absolute; bottom: 30px; left: 50%;
    transform: translateX(-50%); z-index: 10;
}
.icon-btn {
    width: 50px; height: 50px; border-radius: 50%;
    background: rgba(255,255,255,0.2); border: 2px solid var(--white);
    color: var(--white); font-size: 18px; cursor: pointer;
    transition: all 0.3s; margin: 0 5px;
}
.icon-btn:hover {
    background: var(--primary-color); border-color: var(--primary-color);
}

/* ======== IMAGE BOX 3 (Second About) ======== */
.img-box3 {
    position: relative;
}
.img-box3 .img1 {
    width: 100%; border-radius: 10px;
}
.img-box3 .box1 {
    position: absolute; top: 20px; left: 20px;
    background: var(--primary-color); color: var(--white);
    padding: 20px; border-radius: 10px; text-align: center;
}

/* ======== IMAGE BOX 5 (Cruise Page) ======== */
.img-box5 {
    position: relative;
}
.img-box5 .img1 { width: 60%; border-radius: 10px; }
.img-box5 .img2 {
    width: 35%; position: absolute; top: 50px; right: 0;
    border-radius: 10px;
}
.img-box5 .img3 {
    width: 40%; margin-top: -50px; border-radius: 10px;
}
.vs-card {
    background: var(--white); padding: 20px; border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: absolute; bottom: -20px; right: 20px;
    text-align: center; max-width: 200px;
}
.vs-card a { color: var(--primary-color); font-weight: 600; display: block; }

/* ======== GALLERY ======== */
.gallery-section { padding: 80px 0; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}
.gallery-item {
    border-radius: 10px; overflow: hidden;
    cursor: pointer; position: relative;
}
.gallery-item img {
    width: 100%; height: 200px; object-fit: cover;
    transition: transform 0.3s;
}
.gallery-item:hover img { transform: scale(1.1); }

/* ======== WEATHER ======== */
.weather-section {
    padding: 60px 0; background: var(--smoke-color);
}
.weatherwidget-io { display: block; min-height: 156px; }

/* ======== CONTACT PAGE ======== */
.contact-info-section { padding: 80px 0; }
.contact-info-box {
    margin-bottom: 30px;
}
.contact-info-box h3 {
    font-size: 20px; color: var(--title-color); margin-bottom: 10px;
}
.contact-info-box p,
.contact-info-box ul { color: var(--body-color); }
.contact-info-box ul li {
    padding: 5px 0;
}
.contact-form-section {
    padding: 80px 0; background: var(--smoke-color);
}
.contact-form .form-control {
    padding: 15px 20px; border: 1px solid #ddd;
    border-radius: 5px; font-family: var(--font-family);
    font-size: 15px; margin-bottom: 20px; height: auto;
}
.contact-form textarea.form-control { min-height: 150px; }
.contact-form .btn-submit {
    background: var(--primary-color); color: var(--white);
    border: none; padding: 14px 40px; font-size: 16px;
    font-weight: 600; border-radius: 5px; cursor: pointer;
    font-family: var(--font-family);
    transition: background 0.3s;
}
.contact-form .btn-submit:hover { background: var(--secondary-color); }
.form-message {
    padding: 15px; border-radius: 5px; margin-bottom: 20px; display: none;
}
.form-message.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; display: block; }
.form-message.error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; display: block; }

/* ======== LEGAL PAGES ======== */
.legal-page { padding: 80px 0; }
.legal-page h6 { font-size: 18px; font-weight: 700; margin-top: 25px; }
.legal-page p { line-height: 1.8; }

/* ======== FOOTER ======== */
.site-footer {
    background: #1C1C1C;
    color: rgba(255,255,255,0.7);
}
.footer-main { padding: 60px 0 30px; }
.footer-logo { margin-bottom: 20px; }
.footer-logo img { max-height: 60px; width: auto; height: auto; }
.footer-about-text { color: rgba(255,255,255,0.7); font-size: 15px; }
.footer-social { margin-top: 20px; }
.footer-social a {
    width: 40px; height: 40px; display: inline-flex;
    align-items: center; justify-content: center;
    background: rgba(255,255,255,0.1); border-radius: 50%;
    color: var(--white); margin-right: 8px;
    transition: all 0.3s;
}
.footer-social a:hover { background: var(--primary-color); color: var(--white); }
.footer-title {
    color: var(--white); font-size: 20px; font-weight: 700;
    margin-bottom: 20px; padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    color: rgba(255,255,255,0.7); font-size: 15px;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--primary-color); }
.footer-links i { margin-right: 8px; font-size: 12px; }
.newsletter-form {
    display: flex; gap: 0; margin-top: 15px;
}
.newsletter-form .form-control {
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    color: var(--white); padding: 12px 15px; border-radius: 5px 0 0 5px;
    font-family: var(--font-family);
}
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form .btn-subscribe { border-radius: 0 5px 5px 0; white-space: nowrap; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}
.copyright-text { font-size: 14px; margin: 0; color: rgba(255,255,255,0.65); }
.copyright-text a { color: rgba(255,255,255,0.9); text-decoration: underline; }
.copyright-text a:hover { color: var(--primary-color); }
.copyright-menu {
    display: flex; justify-content: flex-end; gap: 20px;
    list-style: none; padding: 0; margin: 0;
}
.copyright-menu a {
    color: rgba(255,255,255,0.5); font-size: 14px;
}
.copyright-menu a:hover { color: var(--primary-color); }

/* ======== FOOTER MOBILE ======== */
.footer-mobile { padding: 30px 0 70px; } /* 70px bottom to clear book-now bar */
.footer-mobile-inner { text-align: center; }
.footer-mobile-logo { margin-bottom: 16px; }
.footer-mobile-logo img { max-height: 45px; width: auto; height: auto; }
.footer-mobile-social { margin-bottom: 16px; }
.footer-mobile-social a {
    width: 38px; height: 38px; display: inline-flex;
    align-items: center; justify-content: center;
    background: rgba(255,255,255,0.1); border-radius: 50%;
    color: var(--white); margin: 0 4px; font-size: 15px;
    transition: background 0.3s;
}
.footer-mobile-social a:hover { background: var(--primary-color); }
.footer-mobile-legal {
    display: flex; justify-content: center; flex-wrap: wrap;
    gap: 6px 16px; margin-bottom: 12px;
}
.footer-mobile-legal a {
    color: rgba(255,255,255,0.5); font-size: 13px;
}
.footer-mobile-legal a:hover { color: var(--primary-color); }
.footer-mobile-copy {
    color: rgba(255,255,255,0.6); font-size: 12px; margin: 0;
}

/* ======== SCROLL TO TOP ======== */
.scroll-to-top {
    position: fixed; bottom: 30px; right: 30px;
    width: 45px; height: 45px; border-radius: 50%;
    background: var(--secondary-color); color: var(--white);
    display: none; align-items: center; justify-content: center;
    font-size: 18px; z-index: 999;
    transition: all 0.3s;
    text-decoration: none;
}
.scroll-to-top:hover { background: var(--primary-color); color: var(--white); }
.scroll-to-top.show { display: flex; }

/* ======== FAREHARBOR BOOK BUTTONS ======== */
.fh-book-btn {
    position: fixed; z-index: 998;
    text-decoration: none !important; font-weight: bold !important;
    letter-spacing: 0.2px !important; box-shadow: none !important;
    border-radius: 8px !important;
    background: var(--primary-color) !important;
    color: var(--white) !important;
    border: 0 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}
.fh-book-desktop {
    right: 0; top: 50%; transform: translateY(-50%);
    writing-mode: vertical-rl; padding: 1.35em 0.26em !important;
    font-size: 11.5px !important; letter-spacing: 1.2px !important;
}
a.fh-book-btn.fh-book-desktop.fh-button-true-flat-red {
    padding: 1.35em 0.26em !important;
    font-size: 11.5px !important;
    letter-spacing: 1.2px !important;
    line-height: 1.05 !important;
    border-radius: 6px 0 0 6px !important;
}
.fh-book-mobile-wrap {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 998;
}
.fh-book-mobile-wrap.is-hidden {
    display: none !important;
}
.fh-book-mobile {
    bottom: 0; left: 0; right: 0;
    text-align: center !important; padding: 12px 2em !important;
    font-size: 1.1em !important; border-radius: 0 !important;
}
.fh-book-mobile-dismiss {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.18);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
}
.fh-book-mobile-dismiss:hover,
.fh-book-mobile-dismiss:focus-visible {
    background: rgba(0, 0, 0, 0.28);
}
a.fh-button-true-flat-red:hover { background-color: #102F62 !important; }

/* ======== CTA SECTION ======== */
.cta-section {
    background: var(--secondary-color);
    padding: 60px 0;
    text-align: center;
}
.cta-section h2 { color: var(--white); }
.cta-section .sec-subtitle { color: var(--border-color); }

/* ============================================================
   RESPONSIVE — Mobile-First
   Base styles = mobile, then scale up with min-width
   ============================================================ */

/* ---- Mobile base overrides (< 768px is default) ---- */

/* Typography — mobile sizes */
h1 { font-size: 28px; }
h2 { font-size: 24px; }
h3 { font-size: 20px; }
.sec-title { font-size: 26px; }

/* Hero — compact on mobile */
.hero-slide { height: 350px; }
.hero-title { font-size: 24px; }
.hero-subtitle { font-size: 13px; letter-spacing: 1px; }
.hero-content { padding: 0 15px; }
.hero-slider-nav { bottom: 15px; }
.icon-btn { width: 40px; height: 40px; font-size: 14px; }
.tour-hero .hero-slide {
    min-height: 420px;
    height: auto;
    padding: 96px 0 110px;
    align-items: flex-end;
}
.tour-hero .hero-content--tour {
    max-width: 100%;
    padding: 22px 20px;
    border-radius: 16px;
}
.tour-hero .hero-subtitle {
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
}
.tour-hero .hero-title {
    font-size: 29px;
    line-height: 1.2;
    margin-bottom: 18px;
}
.tour-hero .hero-content--tour .vs-btn {
    width: 100%;
    text-align: center;
}

/* Breadcrumb — smaller on mobile */
.breadcrumb-area { padding: 20px 0; }
.breadcrumb-title { font-size: 24px; }

/* Sections — tighter padding on mobile */
.image-box-section { padding: 20px 0 28px; }
.testimonial-section { padding: 40px 0; }
.gallery-section { padding: 40px 0; }
.contact-info-section { padding: 40px 0; }
.contact-form-section { padding: 40px 0; }
.legal-page { padding: 40px 0; }
.cta-section { padding: 40px 0; }
.weather-section { padding: 40px 0; }

/* Image boxes — simplify on mobile */
.image-box1 { padding-right: 0; }
.image-box-section .row.align-items-center {
    row-gap: 18px;
}
.image-box-section .title-area {
    margin-bottom: 18px;
}
.image-box-section .sec-text {
    margin-bottom: 0;
}
.image-box1 .img1 {
    min-height: 220px;
}
.about-list1 {
    margin: 16px 0;
}
.about-list1 li {
    padding-top: 6px;
    padding-bottom: 6px;
}
.image-box1 .img2 { display: none; }
.media-box1, .media-box2 { display: none; }
.img-box5 .img1 { width: 100%; }
.img-box5 .img2 { display: none; }
.img-box5 .img3 { width: 60%; margin-top: 15px; }
.vs-card { position: static; max-width: 100%; margin-top: 15px; }

/* Gallery — 2 columns on mobile */
.gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
.gallery-item img { height: 140px; }

/* Buttons — full width on mobile */
.vs-btn { padding: 12px 25px; font-size: 15px; }
.vs-btn.style5 { font-size: 16px; padding: 14px 30px; }

/* Tour cards — stack meta */
.tour-card-img { height: 200px; }
.tour-card-body { padding: 20px; }
.tour-card-meta { flex-direction: column; gap: 8px; }
.tour-card-footer { flex-direction: column; gap: 12px; align-items: flex-start; }
.tour-card-footer .vs-btn { width: 100%; }

/* Tour sidebar — not sticky on mobile */
.tour-sidebar { position: static; margin-top: 30px; }
.tour-details-box { padding: 20px 18px; }
.tour-details-box h3,
.tour-details-box h4 { line-height: 1.35; }
.tour-meta-list li { padding: 12px 0; line-height: 1.55; }

/* Blog cards */
.blog-card-img { height: 180px; }
.blog-card-body { padding: 20px; }
.blog-topic-card { padding: 22px 20px; }
.blog-topic-list li { margin-bottom: 14px; }
.related-reading-card { padding: 20px; }
.related-reading-card h4 { font-size: 1.05rem; }

/* Footer — stack newsletter */
.newsletter-form { flex-direction: column; }
.newsletter-form .form-control { border-radius: 5px; }
.newsletter-form .btn-subscribe { border-radius: 5px; margin-top: 10px; }
.copyright-text { text-align: center; }
.copyright-menu { justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 10px; }

/* FareHarbor — show mobile bar, hide desktop sidebar */
.fh-book-desktop { display: none !important; }
.fh-book-mobile-wrap { display: block !important; }

/* Scroll-to-top — above mobile book bar */
.scroll-to-top { bottom: 74px; right: 15px; width: 40px; height: 40px; font-size: 16px; }
body.mobile-book-bar-hidden .scroll-to-top { bottom: 15px; }

/* Contact form — full-width inputs */
.contact-form .form-control { padding: 12px 15px; font-size: 16px; }

/* FAQ — tighter on mobile */
.faq-item summary { padding: 14px 15px; font-size: 15px; padding-right: 35px; }
.faq-item summary::after { right: 15px; }
.faq-item p { padding: 12px 15px; }

/* Mobile menu — full width on small screens */
@media (max-width: 374px) {
    .mobile-menu-wrapper { width: 100%; right: -100%; }
}

/* ---- Tablet (>= 768px) ---- */
@media (min-width: 768px) {
    h1 { font-size: 36px; }
    h2 { font-size: 30px; }
    .sec-title { font-size: 34px; }

    .hero-slide { height: 450px; }
    .hero-title { font-size: 38px; }
    .hero-subtitle { font-size: 15px; }
    .tour-hero .hero-slide {
        min-height: 450px;
        padding: 80px 0;
        align-items: center;
    }
    .tour-hero .hero-content--tour {
        padding: 26px 28px;
    }
    .tour-hero .hero-title { font-size: 38px; }
    .breadcrumb-area { padding: 60px 0; background-image: url('../images/homepage/corfu-cruise-breadcrumb-hero.jpg'); }
    .breadcrumb-title { font-size: 32px; }

    .image-box-section { padding: 60px 0; }
    .testimonial-section { padding: 60px 0; }
    .gallery-section { padding: 60px 0; }
    .contact-info-section { padding: 60px 0; }
    .contact-form-section { padding: 60px 0; }
    .legal-page { padding: 60px 0; }
    .cta-section { padding: 50px 0; }

    .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 15px; }
    .gallery-item img { height: 180px; }

    .tour-card-img { height: 240px; }
    .tour-card-meta { flex-direction: row; }
    .tour-card-footer { flex-direction: row; align-items: center; }
    .tour-card-footer .vs-btn { width: auto; }

    .blog-card-img { height: 200px; }

    .fh-book-mobile-wrap { display: none !important; }
    .scroll-to-top { bottom: 30px; right: 30px; width: 45px; height: 45px; }
    .copyright-text { text-align: left; }
    .copyright-menu { margin-top: 0; }
}

/* ---- Desktop (>= 1024px) ---- */
@media (min-width: 1024px) {
    h1 { font-size: 48px; }
    h2 { font-size: 36px; }
    .sec-title { font-size: 42px; }

    .hero-slide { height: 600px; }
    .hero-title { font-size: 56px; }
    .hero-subtitle { font-size: 16px; letter-spacing: 2px; }
    .breadcrumb-area { padding: 80px 0; }
    .breadcrumb-title { font-size: 48px; }

    .image-box-section { padding: 80px 0; }
    .testimonial-section { padding: 80px 0; }
    .gallery-section { padding: 80px 0; }
    .contact-info-section { padding: 80px 0; }
    .contact-form-section { padding: 80px 0; }
    .legal-page { padding: 80px 0; }
    .cta-section { padding: 60px 0; }

    .image-box1 { padding-right: 30px; }
    .image-box1 .img2 { display: block; }
    .media-box1, .media-box2 { display: block; }
    .img-box5 .img1 { width: 60%; }
    .img-box5 .img2 { display: block; }
    .img-box5 .img3 { width: 40%; margin-top: -50px; }
    .vs-card { position: absolute; max-width: 200px; }

    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
    .gallery-item img { height: 200px; }

    .tour-card-img { height: 280px; }
    .tour-sidebar { position: sticky; top: 100px; }

    .blog-card-img { height: 220px; }

    .fh-book-desktop { display: block !important; }
    .copyright-menu { justify-content: flex-end; }
}

/* ======== TOUR CARDS ======== */
.tour-card {
    background: var(--white); border-radius: 10px; overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}
.tour-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.tour-card-img { overflow: hidden; height: 280px; }
.tour-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.tour-card:hover .tour-card-img img { transform: scale(1.05); }
.tour-card-body { padding: 25px; }
.tour-card-subtitle {
    color: var(--primary-color); font-size: 13px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px;
}
.tour-card-title { font-size: 22px; margin: 8px 0 12px; }
.tour-card-title a { color: var(--title-color); }
.tour-card-title a:hover { color: var(--primary-color); }
.tour-card-meta {
    display: flex; gap: 20px; margin: 15px 0; padding: 15px 0;
    border-top: 1px solid #eee; border-bottom: 1px solid #eee;
    font-size: 14px; color: var(--body-color);
}
.tour-card-meta i { color: var(--primary-color); margin-right: 5px; }
.tour-card-footer {
    display: flex; justify-content: space-between; align-items: center; margin-top: 15px;
}
.tour-card-price { font-size: 24px; font-weight: 700; color: var(--primary-color); }

/* ======== TOUR SIDEBAR ======== */
.tour-sidebar { position: sticky; top: 100px; }
.tour-details-box {
    background: var(--white); border-radius: 10px; padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
.tour-details-box h4 { margin-bottom: 20px; padding-bottom: 15px; border-bottom: 2px solid var(--primary-color); }
.tour-meta-list { list-style: none; padding: 0; }
.tour-meta-list li { padding: 10px 0; border-bottom: 1px solid #eee; font-size: 15px; }
.tour-meta-list li:last-child { border-bottom: none; }
.tour-meta-list i { color: var(--primary-color); width: 25px; text-align: center; margin-right: 8px; }

.blog-topic-card h3 {
    margin-bottom: 18px;
    line-height: 1.35;
}
.blog-topic-list {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 0;
}
.blog-topic-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}
.blog-topic-list li:last-child {
    margin-bottom: 0;
}
.related-reading-link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}
.related-reading-card {
    padding: 22px;
    background: var(--white);
    border-radius: 12px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.related-reading-link:hover .related-reading-card {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}
.related-reading-card h4 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.45;
    margin-bottom: 10px;
}
.related-reading-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #666;
}

/* ======== BLOG CARDS ======== */
.blog-card {
    background: var(--white); border-radius: 10px; overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}
.blog-card:hover { transform: translateY(-3px); }
.blog-card-img { overflow: hidden; height: 220px; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 25px; }
.blog-card-date {
    color: var(--body-color); font-size: 14px; margin-bottom: 8px; display: block;
}
.blog-card-date i { color: var(--primary-color); margin-right: 5px; }
.blog-card-title { font-size: 20px; margin-bottom: 10px; line-height: 1.4; }
.blog-card-title a { color: var(--title-color); }
.blog-card-title a:hover { color: var(--primary-color); }
.read-more {
    color: var(--primary-color); font-weight: 600; font-size: 15px;
    display: inline-block; margin-top: 10px;
}
.read-more:hover { color: var(--secondary-color); }
.read-more i { margin-left: 5px; font-size: 12px; transition: margin-left 0.3s; }
.read-more:hover i { margin-left: 10px; }

/* ======== FAQ ======== */
.faq-list { margin-top: 20px; }
.faq-item {
    background: var(--white); border: 1px solid #eee; border-radius: 8px;
    margin-bottom: 10px; overflow: hidden;
    transition: box-shadow 0.3s;
}
.faq-item:hover { box-shadow: 0 3px 10px rgba(0,0,0,0.05); }
.faq-item summary {
    padding: 18px 20px; cursor: pointer; font-weight: 600;
    font-size: 16px; color: var(--title-color);
    list-style: none; position: relative; padding-right: 40px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '\f078'; font-family: 'Font Awesome 5 Free'; font-weight: 900;
    position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
    color: var(--primary-color); font-size: 14px;
    transition: transform 0.3s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(180deg); }
.faq-item[open] summary { color: var(--primary-color); border-bottom: 1px solid #eee; }
.faq-item p {
    padding: 15px 20px; margin: 0; color: var(--body-color); line-height: 1.7;
}

/* ======== SLICK OVERRIDES ======== */
.slick-dots { bottom: 15px; }
.slick-dots li button:before { color: var(--white); font-size: 10px; }
.slick-dots li.slick-active button:before { color: var(--primary-color); }
