/* ==========================================================================
   Summer Vibe Landing Page Styles
   ========================================================================== */

/* ---------- Reset & base ---------- */
.landing-page #wrapper { padding-top: 0 !important; }

/* ---------- Flatpickr fix ---------- */
.flatpickr-calendar {
    z-index: 99999 !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: #fff !important;
    box-shadow: 0 3px 13px rgba(0,0,0,0.08) !important;
    border-radius: 5px !important;
}

.flatpickr-calendar.open {
    display: block !important;
}

.flatpickr-calendar.multiMonth {
    width: 620px !important;
}

.flatpickr-days {
    width: 100% !important;
}

.flatpickr-innerContainer {
    display: flex !important;
}

.flatpickr-rContainer {
    width: 100% !important;
}

.dayContainer {
    width: 307px !important;
    min-width: 307px !important;
    max-width: 307px !important;
}

.flatpickr-day {
    width: 39px !important;
    max-width: 39px !important;
    height: 39px !important;
    line-height: 39px !important;
}

.flatpickr-months {
    display: flex !important;
}

.flatpickr-month {
    flex: 1 !important;
    height: 34px !important;
}

.flatpickr-weekdays {
    display: flex !important;
    width: 100% !important;
}

.flatpickr-weekdaycontainer {
    display: flex !important;
    flex: 1 !important;
}

.flatpickr-weekday {
    flex: 1 !important;
    font-size: 12px !important;
}

/* ---------- Landing Header ---------- */
.sv-landing-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    height: 64px;
}

.sv-landing-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.sv-landing-logo img {
    max-height: 40px;
    width: auto;
}

.sv-landing-faq-link {
    font-size: 15px;
    font-weight: 600;
    color: #01024d;
    text-decoration: none;
    letter-spacing: 0.3px;
}

.sv-landing-faq-link:hover {
    color: #f5a623;
}

/* ---------- Container ---------- */
.sv-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Section title ---------- */
.sv-section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #01024d;
    margin-bottom: 36px;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.sv-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Replace URL below with your hero image */
    background: url('https://kymmaboats.com/wp-content/uploads/2026/01/Greece-Zakynthos-scaled.jpg') no-repeat center center / cover;
    background-color: #01024d;
    padding-top: 64px; /* header offset */
}

.sv-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(1,2,77,0.65);
}

.sv-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    padding: 40px 24px;
    color: #fff;
}

.sv-hero h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 20px;
    color: #fff !important;
}

.sv-hero-sub {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 16px;
    opacity: 0.92;
}

.sv-hero-highlight {
    display: inline-block;
    background: rgba(245,166,35,0.2);
    border: 1px solid rgba(245,166,35,0.5);
    border-radius: 6px;
    padding: 10px 20px;
    font-size: 17px;
    font-weight: 600;
    color: #ffd97d;
    margin-bottom: 12px;
}

.sv-hero-note {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 28px;
}

.sv-cta-btn {
    display: inline-block;
    background: #f5a623;
    color: #01024d;
    font-size: 18px;
    font-weight: 700;
    padding: 14px 40px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.sv-cta-btn:hover {
    background: #e69610;
    color: #01024d;
    transform: translateY(-1px);
}

/* ==========================================================================
   VIBE SELECTION
   ========================================================================== */
.sv-vibes {
    padding: 72px 0 56px;
    background: #f8f9fb;
}

.sv-vibes-grid {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.sv-vibe-card {
    flex: 1;
    max-width: 260px;
    background: #fff;
    border: 2px solid #e0e3ea;
    border-radius: 14px;
    padding: 36px 24px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
    font-family: inherit;
    font-size: inherit;
}

.sv-vibe-card:hover {
    border-color: #f5a623;
    box-shadow: 0 4px 18px rgba(245,166,35,0.15);
    transform: translateY(-2px);
}

.sv-vibe-card.active {
    border-color: #f5a623;
    background: #fffbf2;
    box-shadow: 0 4px 18px rgba(245,166,35,0.18);
}

.sv-vibe-emoji {
    display: block;
    font-size: 48px;
    margin-bottom: 14px;
    line-height: 1;
}

.sv-vibe-label {
    font-size: 18px;
    font-weight: 700;
    color: #01024d;
}

/* ==========================================================================
   FORM
   ========================================================================== */
.sv-form-section {
    padding: 72px 0;
}

.sv-form {
    max-width: 640px;
    margin: 0 auto;
}

.sv-field {
    margin-bottom: 22px;
}

.sv-field > label,
.sv-field-inner > label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.sv-req { color: #e74c3c; }

.sv-optional {
    font-weight: 400;
    color: #999;
    font-size: 13px;
}

.sv-form input[type="text"],
.sv-form input[type="email"],
.sv-form input[type="tel"],
.sv-form input[type="number"],
.sv-form select,
.sv-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d0d3da;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    color: #333;
    background: #fff;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.sv-form input:focus,
.sv-form select:focus,
.sv-form textarea:focus {
    border-color: #f5a623;
    outline: none;
    box-shadow: 0 0 0 3px rgba(245,166,35,0.12);
}

.sv-form input[type="number"] {
    max-width: 120px;
}

/* Row helpers */
.sv-row { display: flex; gap: 16px; }
.sv-row-half > * { flex: 1; }

/* --- Dates toggle --- */
.sv-dates-toggle {
    display: inline-flex;
    border: 1px solid #d0d3da;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 14px;
}

.sv-dates-tab {
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    background: #fff;
    border: none;
    cursor: pointer;
    color: #555;
    font-family: inherit;
    transition: background 0.2s, color 0.2s;
}

.sv-dates-tab + .sv-dates-tab {
    border-left: 1px solid #d0d3da;
}

.sv-dates-tab.active {
    background: #01024d;
    color: #fff;
}

.sv-dates-panel { display: none; }
.sv-dates-panel.active { display: block; }

/* --- Vibe radios --- */
.sv-vibe-radios {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.sv-radio-label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 8px 16px;
    border: 1px solid #d0d3da;
    border-radius: 6px;
    transition: border-color 0.2s, background 0.2s;
    font-size: 14px;
}

.sv-radio-label:has(input:checked) {
    border-color: #f5a623;
    background: #fffbf2;
}

.sv-radio-label input { margin: 0; }

/* --- Checkboxes --- */
.sv-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sv-checkbox-label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 7px 14px;
    border: 1px solid #d0d3da;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s, background 0.2s;
}

.sv-checkbox-label:has(input:checked) {
    border-color: #f5a623;
    background: #fffbf2;
}

.sv-checkbox-label input {
    margin: 0;
    width: 15px;
    height: 15px;
}

/* --- Phone --- */
.sv-phone-wrap {
    display: flex;
    gap: 10px;
}

.sv-phone-wrap select,
.sv-phone-wrap .select2-container {
    width: 180px !important;
    max-width: 180px;
    flex-shrink: 0;
}

.sv-phone-wrap input[type="tel"] {
    flex: 1;
    min-width: 0;
}

/* --- Consent --- */
.sv-consent-row { margin-top: 8px; }

.sv-consent-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.4;
}

.sv-consent-label input {
    margin-top: 3px;
    flex-shrink: 0;
    width: 15px;
    height: 15px;
}

.sv-consent-label a {
    color: #01024d;
    text-decoration: underline;
}

/* --- Submit area --- */
.sv-submit-area {
    margin-top: 28px;
    text-align: center;
}

.sv-submit-btn {
    display: inline-block;
    background: #f5a623;
    color: #01024d;
    font-size: 18px;
    font-weight: 700;
    padding: 14px 48px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s, transform 0.15s;
}

.sv-submit-btn:hover {
    background: #e69610;
    transform: translateY(-1px);
}

.sv-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.sv-voucher-option {
    margin-top: 18px;
    text-align: left;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.sv-voucher-hint {
    margin: 6px 0 0 26px;
    font-size: 13px;
    color: #777;
    line-height: 1.45;
    font-style: italic;
}

.sv-fine-print {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 18px;
    line-height: 1.4;
}

/* --- Feedback --- */
.sv-feedback {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
}

.sv-feedback.sv-feedback-error {
    background: #fdecea;
    color: #b71c1c;
    border: 1px solid #f5c6cb;
}

.sv-feedback.sv-feedback-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* --- Thank you --- */
.sv-thank-you {
    text-align: center;
    padding: 60px 20px;
}

.sv-thank-you-inner {
    max-width: 480px;
    margin: 0 auto;
}

.sv-thank-you-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
}

.sv-thank-you h3 {
    font-size: 24px;
    color: #01024d;
    margin-bottom: 10px;
}

.sv-thank-you p {
    font-size: 16px;
    color: #555;
}

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.sv-how {
    padding: 72px 0;
    background: #f8f9fb;
}

.sv-how-grid {
    display: flex;
    gap: 36px;
    text-align: center;
}

.sv-how-step {
    flex: 1;
}

.sv-how-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #01024d;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.sv-how-step h3 {
    font-size: 18px;
    color: #01024d;
    margin-bottom: 8px;
}

.sv-how-step p {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.sv-faq {
    padding: 72px 0 80px;
}

.sv-faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.sv-faq-item {
    border-bottom: 1px solid #e0e3ea;
}

.sv-faq-item:first-child {
    border-top: 1px solid #e0e3ea;
}

.sv-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 4px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #01024d;
    text-align: left;
    font-family: inherit;
    line-height: 1.4;
}

.sv-faq-question:hover { color: #f5a623; }

.sv-faq-chevron {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.25s;
    flex-shrink: 0;
    margin-left: 16px;
}

.sv-faq-item.active .sv-faq-chevron {
    transform: rotate(-135deg);
}

.sv-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.sv-faq-item.active .sv-faq-answer {
    max-height: 300px;
}

.sv-faq-answer p {
    padding: 0 4px 18px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {

    .sv-hero h1 {
        font-size: 28px;
    }

    .sv-hero-sub {
        font-size: 16px;
    }

    .sv-hero-highlight {
        font-size: 15px;
        padding: 8px 14px;
    }

    .sv-cta-btn,
    .sv-submit-btn {
        font-size: 16px;
        padding: 12px 28px;
        width: 100%;
        text-align: center;
    }

    .sv-vibes-grid {
        flex-direction: column;
        align-items: center;
    }

    .sv-vibe-card {
        max-width: 100%;
        width: 100%;
    }

    .sv-row-half {
        flex-direction: column;
        gap: 10px;
    }

    .sv-vibe-radios {
        flex-direction: column;
    }

    .sv-phone-wrap {
        flex-direction: column;
    }

    .sv-phone-wrap select {
        max-width: 100%;
    }

    .sv-how-grid {
        flex-direction: column;
        gap: 32px;
    }

    .sv-section-title {
        font-size: 24px;
    }

    .sv-landing-header-inner {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .sv-hero h1 {
        font-size: 24px;
    }

    .sv-dates-toggle {
        width: 100%;
    }

    .sv-dates-tab {
        flex: 1;
        text-align: center;
    }

    .sv-checkboxes {
        flex-direction: column;
    }
}
