:root {
    --navy: #06283D;
    --navy-dark: #031926;
    --aegean: #1363DF;
    --turquoise: #00C2CB;
    --seafoam: #7FE9DE;
    --sunset: #FFB703;
    --white: #FFFFFF;
    --cream: #FFF8EE;
    --cream-soft: #F8F1E8;
    --warm-card: #FFFDF8;
    --text-dark: #031926;
    --text-muted: rgba(41, 71, 90, 0.82);
    --border-soft: rgba(5, 40, 58, 0.10);
    --shadow: 0 20px 48px rgba(5, 40, 58, 0.10);
    --shadow-hover: 0 28px 64px rgba(5, 40, 58, 0.16);
    --radius: 28px;
    --radius-small: 18px;
    --container: 1180px;
}

/* RESET */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: Inter, Arial, sans-serif;
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    cursor: pointer;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: min(var(--container), calc(100% - 48px));
    max-width: var(--container);
    margin-inline: auto;
}

/* HEADER */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(6, 40, 61, 0.84);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(127, 233, 222, 0.22);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 0;
}

.logo {
    font-size: 1.45rem;
    font-weight: 950;
    color: var(--white);
    white-space: nowrap;
    letter-spacing: -0.04em;
}

/* NAV */

nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

nav a {
    color: rgba(255, 255, 255, 0.86);
    font-weight: 800;
    transition: color 0.25s ease, background 0.25s ease;
}

nav a:hover {
    color: var(--seafoam);
}

/* HEADER ACTIONS */

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

/* LANGUAGE SWITCHER */

.language-switcher {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.lang-btn {
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.82);
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 900;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.lang-btn.active {
    background: rgba(127, 233, 222, 0.25);
    color: var(--white);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    transform: translateY(-1px);
}

/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 24px;
    border: 0;
    border-radius: var(--radius-small);
    font-weight: 900;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.08);
}

.btn-small {
    min-height: 44px;
    padding: 10px 18px;
    font-size: 0.95rem;
}

.btn-secondary {
    background: #ffffff;
    color: var(--navy-dark);
    border: 1px solid rgba(6, 40, 61, 0.12);
    box-shadow: 0 12px 28px rgba(6, 40, 61, 0.08);
}

.btn-secondary:hover {
    background: #f7f3ee;
    color: var(--navy-dark);
}

a.btn[data-destination="thassos"],
a[data-destination="thassos"] {
    background: linear-gradient(135deg, #38BDF8, #1363DF);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(56, 189, 248, 0.28);
}

a.btn[data-destination="halkidiki"],
a[data-destination="halkidiki"] {
    background: linear-gradient(135deg, #4ADE80, #10B981);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(74, 222, 128, 0.28);
}

/* HERO */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    background:
        linear-gradient(180deg, rgba(3, 25, 38, 0.18) 0%, rgba(3, 25, 38, 0.34) 100%),
        url("images/hero.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero::after {
    content: "";
    position: absolute;
    right: -120px;
    top: 20%;
    width: 420px;
    height: 420px;
    border-radius: 999px;
    background: rgba(0, 194, 203, 0.20);
    filter: blur(80px);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 10;
    padding: 140px 0 100px;
}

.hero-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    transform: translateY(-24px);
}

.badge {
    display: inline-block;
    padding: 10px 18px;
    margin-bottom: 22px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(127, 233, 222, 0.30);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-weight: 900;
}

.hero h1 {
    margin-bottom: 18px;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.02;
    font-weight: 950;
    letter-spacing: -0.05em;
    color: #ffffff;
    text-shadow: 0 5px 16px rgba(0, 0, 0, 0.75), 0 0 26px rgba(255, 255, 255, 0.18);
}

.hero-copy {
    max-width: 760px;
    margin: 0 auto 36px;
    font-size: clamp(18px, 1.6vw, 23px);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.38);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.hero-buttons .btn {
    min-width: 220px;
}

.trust-note {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: calc(100% - 40px);
    margin: 0 auto;
    padding: 10px 18px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    background: rgba(3, 25, 38, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.trust-badge {
    padding: 10px 16px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(0, 194, 203, 0.09);
    border: 1px solid rgba(127, 233, 222, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 0.95rem;
    font-weight: 800;
}

/* SECTIONS */

.content-section {
    padding: 80px 0;
    color: var(--navy-dark);
    background:
        radial-gradient(circle at top, rgba(255, 183, 3, 0.08), transparent 34%),
        linear-gradient(180deg, #FFF8EE 0%, #F8F1E8 100%);
}

.section-head,
.testimonials-head,
.why-head {
    max-width: 820px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-label,
.testimonials-label,
.why-label {
    display: inline-flex;
    justify-content: center;
    margin-bottom: 14px;
    color: var(--aegean);
    font-size: 0.85rem;
    font-weight: 950;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.why-label,
.booking-section .section-label {
    color: #0f7f80;
}

.section-title,
.testimonials-head h2,
.why-head h2 {
    margin-bottom: 18px;
    color: var(--navy-dark);
    font-size: clamp(2.2rem, 3vw, 3.6rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.section-copy,
.testimonials-head p,
.why-head p {
    max-width: 760px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

/* GRIDS */

.destination-grid,
.cruise-grid,
.how-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.testimonials-grid,
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

/* CARDS */

.destination-card,
.cruise-card,
.step-card,
.testimonial-card,
.why-card,
.final-cta-card {
    border-radius: var(--radius);
    border: 1px solid rgba(5, 40, 58, 0.08);
    background:
        radial-gradient(circle at top right, rgba(0, 194, 203, 0.08), transparent 34%),
        linear-gradient(145deg, #FFFFFF 0%, #FFFDF8 48%, #FFF4E6 100%);
    box-shadow: var(--shadow);
}

.destination-card,
.cruise-card,
.step-card,
.testimonial-card,
.why-card {
    transition: transform 0.30s ease, box-shadow 0.30s ease, filter 0.30s ease;
    animation: softFadeUp 0.7s ease both;
}

.destination-card:hover,
.cruise-card:hover,
.step-card:hover,
.testimonial-card:hover,
.why-card:hover {
    transform: translateY(-8px) scale(1.01);
    filter: brightness(1.01);
    box-shadow: var(--shadow-hover);
}

.destination-card {
    min-height: 320px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
}

.cruise-card {
    position: relative;
    overflow: hidden;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cruise-card::after {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 190px;
    height: 190px;
    border-radius: 999px;
    background: rgba(0, 194, 203, 0.10);
    filter: blur(8px);
    pointer-events: none;
}

.destination-title,
.card-title,
.step-title,
.why-card h3,
.testimonial-user h3 {
    margin-bottom: 10px;
    color: #05283A;
    font-size: 1.55rem;
    line-height: 1.15;
}

.cruise-card .card-title {
    font-size: clamp(1.45rem, 2vw, 1.85rem);
}

.destination-copy,
.card-subtitle,
.card-copy,
.step-copy,
.testimonial-text,
.why-card p,
.final-cta-card p {
    color: var(--text-muted);
}

/* CARD IMAGES - CLEAN VERSION */

.card-image {
    width: calc(100% + 64px);
    max-width: none;
    height: 230px;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: -32px -32px 22px;
    border-radius: 28px 28px 22px 22px;
    box-shadow: 0 16px 34px rgba(5, 40, 58, 0.14);
    transition: transform 0.45s ease, filter 0.45s ease;
}

.cruise-card:hover .card-image {
    transform: scale(1.04);
    filter: brightness(1.05) saturate(1.06);
}

.card-image-dream {
    object-position: center 42%;
    height: 270px;
}

.card-image-media-maria {
    object-position: center 48%;
    height: 270px;
}

/* CARD CONTENT */

.card-subtitle {
    display: inline-flex;
    align-self: flex-start;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255, 183, 3, 0.12);
    color: #5F4300;
    font-size: 0.88rem;
    font-weight: 800;
}

.card-copy {
    margin-bottom: 6px;
    font-size: 0.98rem;
    line-height: 1.75;
}

.card-note {
    margin-top: -8px;
    color: rgba(6, 40, 61, 0.70);
    font-size: 0.94rem;
}

.card-label {
    display: inline-flex;
    margin-bottom: 12px;
    font-size: 0.85rem;
    font-weight: 950;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.card-label-thassos {
    color: #0EA5E9;
}

.card-label-halkidiki {
    color: #10B981;
}

.destination-card a.btn,
.card-actions a.btn,
.final-cta-buttons a.btn {
    width: 100%;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
}

.card-actions {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
}

.card-actions a.btn {
    width: 100%;
    max-width: 420px;
    min-height: 56px;
    border-radius: 999px;
    font-size: 1rem;
    text-align: center;
    justify-content: center;
}

/* META */

.card-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.meta-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 247, 236, 0.92));
    border: 1px solid rgba(5, 40, 58, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.meta-key {
    color: #0F7F80;
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.meta-value,
.card-meta-list {
    color: rgba(41, 71, 90, 0.90);
    font-size: 0.95rem;
    line-height: 1.7;
    white-space: pre-line;
}

/* PILLS */

.card-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    color: #05283A;
    background: rgba(255, 183, 3, 0.12);
    font-size: 0.82rem;
    font-weight: 900;
}

.pill-thassos {
    background: rgba(14, 165, 233, 0.12);
}

.pill-halkidiki {
    background: rgba(16, 185, 129, 0.13);
}

.card-highlight {
    align-self: flex-start;
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 183, 3, 0.12);
    color: #9c5f00;
    font-size: 0.82rem;
    font-weight: 900;
}

/* TESTIMONIALS */

.testimonials-section {
    padding: 86px 0;
    color: var(--navy-dark);
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF8EE 100%);
}

.testimonial-card,
.why-card,
.step-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
}

.testimonial-stars {
    margin-bottom: 18px;
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
}

.testimonial-text {
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.75;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #38BDF8, #0EA5E9);
    color: #ffffff;
    font-weight: 950;
    box-shadow: 0 14px 28px rgba(56, 189, 248, 0.25);
}

.testimonial-user h3 {
    font-size: 1.05rem;
}

.testimonial-user span {
    display: inline-block;
    margin-top: 4px;
    color: rgba(6, 40, 61, 0.62);
    font-size: 0.92rem;
}

/* WHY */

.why-section {
    padding: 86px 0;
    color: var(--navy-dark);
    background: linear-gradient(180deg, #FFF8EE 0%, #F1FBFA 100%);
}

.why-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 18px;
    background: rgba(16, 185, 129, 0.12);
    font-size: 1.55rem;
}

.why-card h3 {
    font-size: 1.2rem;
    line-height: 1.25;
}

.why-card p {
    font-size: 0.98rem;
    line-height: 1.7;
}

/* BOOKING */

.booking-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top, rgba(0, 194, 203, 0.10), transparent 36%),
        linear-gradient(180deg, #FFF8EE 0%, #EEF9F7 48%, #FFF8EE 100%);
}

.booking-section .container {
    position: relative;
    z-index: 1;
}

.booking-section .how-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    position: relative;
}

.step-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 320px;
}

.step-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.step-index {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #0bb9c5, #0f7f80);
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 950;
    box-shadow: 0 18px 34px rgba(15, 108, 122, 0.24);
}

.step-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(15, 149, 158, 0.12);
    font-size: 24px;
}

.step-title {
    font-size: 1.15rem;
    color: #083645;
}

.step-copy {
    color: rgba(6, 40, 61, 0.75);
    line-height: 1.75;
}

/* FINAL CTA */

.final-cta-section {
    background: #ffffff;
}

.final-cta-card {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 28px;
}

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
}

.final-cta-card .btn {
    min-height: 58px;
    border-radius: 22px;
}

/* GALLERY */

.gallery-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #fffaf0 0%, #f4fbff 100%);
}

.gallery-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 26px;
}

.gallery-tags span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 15px;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.10);
    color: #075985;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid rgba(14, 165, 233, 0.18);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 45px;
}

.gallery-image {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 26px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-image:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

/* FOOTER */

.premium-footer {
    margin-top: 40px;
    margin-bottom: 0 !important;
    padding: 48px 20px 42px;
    border-radius: 28px 28px 0 0;
    color: #ffffff;
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.16), transparent 35%),
        radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.14), transparent 34%),
        linear-gradient(180deg, #021923 0%, #031f2c 100%);
    box-shadow: 0 -18px 44px rgba(3, 25, 38, 0.20);
}

.footer-container {
    max-width: 1180px;
    margin: 0 auto;
}

.footer-simple {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.footer-simple h2 {
    margin-bottom: 16px;
    color: #ffffff;
    font-size: clamp(28px, 5vw, 40px);
    line-height: 1.1;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.footer-simple p {
    max-width: 520px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 500;
}

.footer-simple-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 360px;
    margin: 0 auto 28px;
}

.footer-whatsapp {
    width: 100%;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 24px;
    border-radius: 999px;
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 900;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.footer-whatsapp::after {
    content: "→";
    font-size: 22px;
    line-height: 1;
    font-weight: 950;
}

.footer-whatsapp-thassos {
    background: linear-gradient(135deg, #38bdf8 0%, #0b6ff0 100%);
}

.footer-whatsapp-halkidiki {
    background: linear-gradient(135deg, #4ade80 0%, #10b981 100%);
}

.footer-whatsapp:hover {
    transform: translateY(-3px);
    filter: brightness(1.05);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

.footer-simple-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin: 24px auto 22px;
}

.footer-simple-links a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 900;
    transition: color 0.25s ease;
}

.footer-simple-links a:hover {
    color: #38bdf8;
}

.footer-made {
    display: block;
    margin: 0 auto 8px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-copy {
    display: block;
    color: rgba(255, 255, 255, 0.48);
    font-size: 13px;
    font-weight: 600;
}

/* MOBILE FLOATING WHATSAPP */

.mobile-whatsapp-float {
    display: none;
}

/* ANIMATIONS */

@keyframes softFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.destination-card:nth-child(1),
.cruise-card:nth-child(1),
.step-card:nth-child(1),
.testimonial-card:nth-child(1),
.why-card:nth-child(1) {
    animation-delay: 0.05s;
}

.destination-card:nth-child(2),
.cruise-card:nth-child(2),
.step-card:nth-child(2),
.testimonial-card:nth-child(2),
.why-card:nth-child(2) {
    animation-delay: 0.12s;
}

.cruise-card:nth-child(3),
.step-card:nth-child(3),
.testimonial-card:nth-child(3),
.why-card:nth-child(3) {
    animation-delay: 0.19s;
}

.cruise-card:nth-child(4),
.step-card:nth-child(4),
.why-card:nth-child(4) {
    animation-delay: 0.26s;
}

.cruise-card:nth-child(5),
.why-card:nth-child(5) {
    animation-delay: 0.33s;
}

.why-card:nth-child(6) {
    animation-delay: 0.40s;
}

/* TABLET */

@media (max-width: 1100px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-image {
        height: 240px;
    }
}

@media (max-width: 980px) {
    .container {
        width: min(100% - 40px, 900px);
        max-width: 900px;
    }

    .header-inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
        padding: 18px 0;
    }

    nav {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 18px;
    }

    .header-actions {
        order: 2;
        width: 100%;
        justify-content: center;
    }

    .destination-grid,
    .cruise-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .why-grid,
    .booking-section .how-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .final-cta-card {
        grid-template-columns: 1fr;
    }
}

/* MOBILE */

@media (max-width: 600px) {
    html,
    body {
        margin: 0 !important;
        padding: 0 !important;
        background: #4a3526 !important;
        overflow-x: hidden !important;
    }

    body {
        min-height: 100vh;
        padding-bottom: 0 !important;
    }

    .container {
        width: min(100% - 28px, 430px);
        max-width: 430px;
    }

    header {
        position: static;
        background:
            radial-gradient(circle at top left, rgba(0, 194, 203, 0.18), transparent 36%),
            linear-gradient(180deg, rgba(6, 40, 61, 0.98), rgba(3, 25, 38, 0.96));
        border-bottom: 1px solid rgba(127, 233, 222, 0.18);
        box-shadow: 0 16px 40px rgba(3, 25, 38, 0.22);
    }

    .header-inner {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 12px;
        padding: 18px 0 16px;
    }

    .logo {
        font-size: 28px;
        text-align: center;
        text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
    }

    .header-actions {
        width: 100%;
        justify-content: center;
    }

    .header-actions .btn {
        display: none;
    }

    .language-switcher {
        margin: 2px auto 0;
        gap: 4px;
        padding: 5px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.075);
        border: 1px solid rgba(127, 233, 222, 0.18);
        box-shadow:
            0 10px 26px rgba(0, 0, 0, 0.18),
            inset 0 1px 0 rgba(255, 255, 255, 0.10);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .lang-btn {
        min-width: 56px;
        height: 40px;
        padding: 0 15px;
        border-radius: 999px;
        color: rgba(255, 255, 255, 0.78);
        font-size: 13px;
        font-weight: 950;
        letter-spacing: 0.04em;
    }

    .lang-btn.active {
        color: #ffffff;
        background: linear-gradient(135deg, rgba(56, 189, 248, 0.95), rgba(20, 184, 166, 0.95));
        box-shadow: 0 8px 22px rgba(20, 184, 166, 0.24);
    }

    .lang-btn:hover {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.10);
    }

    nav {
        width: auto;
        max-width: calc(100% - 18px);
        margin: 2px auto 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 4px;
        padding: 5px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.065);
        border: 1px solid rgba(127, 233, 222, 0.15);
        box-shadow:
            0 12px 30px rgba(0, 0, 0, 0.16),
            inset 0 1px 0 rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    nav a {
        min-height: 38px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0 13px;
        border-radius: 999px;
        color: rgba(255, 255, 255, 0.82);
        font-size: 13px;
        font-weight: 900;
        line-height: 1;
        white-space: nowrap;
    }

    nav a:hover {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.10);
    }

    /* HERO MOBILE - MAI LUMINOS */

    .hero {
        min-height: 360px !important;
        height: 360px !important;
        padding: 60px 0 0 !important;
        align-items: flex-start !important;
        background:
            linear-gradient(180deg, rgba(3, 25, 38, 0.02), rgba(3, 25, 38, 0.18)),
            url("images/hero.webp") !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(3, 25, 38, 0.14)),
            radial-gradient(circle at center 18%, rgba(255, 255, 255, 0.16), transparent 44%),
            radial-gradient(circle at center 28%, rgba(0, 194, 203, 0.10), transparent 48%);
        pointer-events: none;
    }

    .hero::after {
        display: none;
    }

    .hero-container {
        width: min(100% - 32px, 430px) !important;
        max-width: 430px;
        padding: 0 !important;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 100% !important;
        margin: 0 auto !important;
        text-align: center !important;
        transform: none !important;
    }

    .hero .badge,
    .hero-copy,
    .hero-buttons,
    .trust-badges {
        display: none !important;
    }

    .hero h1 {
        max-width: 340px !important;
        margin: 0 auto 16px !important;
        color: #ffffff !important;
        font-size: clamp(32px, 8.4vw, 39px) !important;
        line-height: 1.05 !important;
        letter-spacing: -0.04em !important;
        text-shadow:
            0 4px 12px rgba(0, 0, 0, 0.62),
            0 0 20px rgba(255, 255, 255, 0.18) !important;
    }

    .trust-note {
        display: inline-flex !important;
        max-width: 320px !important;
        padding: 9px 15px !important;
        font-size: 13px !important;
        background: rgba(3, 25, 38, 0.50);
    }

    .content-section,
    .testimonials-section,
    .why-section {
        padding: 58px 0;
    }

    .section-head,
    .testimonials-head,
    .why-head {
        margin-bottom: 30px;
    }

    .section-title,
    .testimonials-head h2,
    .why-head h2 {
        font-size: clamp(30px, 8vw, 38px);
        line-height: 1.12;
    }

    .section-copy,
    .testimonials-head p,
    .why-head p {
        font-size: 17px;
        line-height: 1.6;
    }

    .destination-grid,
    .cruise-grid,
    .booking-section .how-grid,
    .testimonials-grid,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .destination-card,
    .cruise-card,
    .step-card,
    .testimonial-card,
    .why-card,
    .final-cta-card {
        padding: 24px;
        border-radius: 26px;
        box-shadow: 0 18px 42px rgba(5, 40, 58, 0.11);
    }

    .destination-title,
    .card-title,
    .step-title {
        font-size: 25px;
        line-height: 1.15;
    }

    .destination-copy,
    .card-copy,
    .step-copy,
    .testimonial-text,
    .why-card p {
        font-size: 16.5px;
        line-height: 1.6;
    }

    .card-image {
        width: calc(100% + 48px);
        height: 190px;
        margin: -24px -24px 20px;
        border-radius: 26px 26px 20px 20px;
    }

    .card-image-dream,
    .card-image-media-maria {
        height: 220px;
    }

    .card-meta {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .card-actions a.btn {
        width: 100%;
        min-height: 56px;
        border-radius: 18px;
    }

    .final-cta-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 28px;
        border-radius: 28px;
    }

    .final-cta-buttons {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .final-cta-buttons .btn {
        width: 100%;
    }

    .gallery-section {
        padding: 60px 0;
    }

    .gallery-tags {
        justify-content: center;
        margin-top: 22px;
    }

    .gallery-tags span {
        font-size: 12px;
        padding: 8px 12px;
    }

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

    .gallery-image {
        height: 230px;
        border-radius: 22px;
    }

    .premium-footer {
        margin-top: 34px;
        margin-bottom: 0 !important;
        padding: 42px 20px 42px !important;
        border-radius: 26px 26px 0 0;
    }

    .footer-simple h2 {
        margin-bottom: 14px;
        font-size: 30px;
    }

    .footer-simple p {
        margin-bottom: 26px;
        font-size: 15px;
        line-height: 1.65;
    }

    .footer-simple-buttons {
        max-width: 100%;
        gap: 13px;
        margin-bottom: 24px;
    }

    .footer-whatsapp {
        min-height: 56px;
        padding: 0 22px;
        font-size: 15px;
    }

    .footer-simple-links {
        gap: 16px;
        margin: 22px auto 20px;
    }

    .footer-made {
        font-size: 11.5px;
        line-height: 1.5;
    }

    .footer-copy {
        font-size: 12px;
        line-height: 1.5;
    }

    .mobile-whatsapp-float {
        position: fixed;
        left: 18px !important;
        right: 18px !important;
        bottom: 10px !important;
        z-index: 9999;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px !important;
        padding: 0 !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        pointer-events: auto;
    }

    .mobile-whatsapp-float.is-hidden {
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(120%) !important;
        pointer-events: none !important;
    }

    .mobile-whatsapp-float a {
        min-height: 48px !important;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0 10px;
        border-radius: 999px !important;
        color: #ffffff;
        font-size: 13px !important;
        font-weight: 950;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.20) !important;
    }

    .mobile-whatsapp-float a[data-destination="thassos"] {
        background: linear-gradient(135deg, #38BDF8, #1363DF);
    }

    .mobile-whatsapp-float a[data-destination="halkidiki"] {
        background: linear-gradient(135deg, #4ADE80, #10B981);
    }
}

/* SMALL PHONES */

@media (max-width: 390px) {
    .container,
    .hero-container {
        width: calc(100% - 24px);
    }

    .logo {
        font-size: 24px;
    }

    nav {
        gap: 3px;
        padding: 4px;
        max-width: calc(100% - 12px);
    }

    nav a {
        min-height: 36px;
        padding: 0 10px;
        font-size: 12.5px;
    }

    .hero {
        min-height: 340px !important;
        height: 340px !important;
        padding-top: 52px !important;
    }

    .hero h1 {
        max-width: 310px !important;
        font-size: 34px !important;
    }

    .trust-note {
        max-width: 300px !important;
        font-size: 12.5px !important;
    }

    .destination-card,
    .cruise-card,
    .step-card {
        padding: 20px;
    }

    .card-image {
        height: 175px;
        margin: -20px -20px 18px;
        width: calc(100% + 40px);
    }
}

/* REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
/* ===============================
   HERO IMAGE LIGHTER FIX
   Tom Cruises
================================ */

.hero {
    background:
        linear-gradient(180deg, rgba(3, 25, 38, 0.06) 0%, rgba(3, 25, 38, 0.18) 100%),
        url("images/hero.webp") !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

/* Mobile hero lighter */
@media (max-width: 600px) {
    .hero {
        background:
            linear-gradient(180deg, rgba(3, 25, 38, 0.02) 0%, rgba(3, 25, 38, 0.10) 100%),
            url("images/hero.webp") !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }
}
/* ===============================
   HERO IMAGE FINAL LIVE FIX
================================ */

.hero {
    background:
        linear-gradient(180deg, rgba(3, 25, 38, 0.06) 0%, rgba(3, 25, 38, 0.18) 100%),
        url("/images/hero.webp") !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

@media (max-width: 600px) {
    .hero {
        background:
            linear-gradient(180deg, rgba(3, 25, 38, 0.03) 0%, rgba(3, 25, 38, 0.12) 100%),
            url("/images/hero.webp") !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }
}