/* Google Fonts — Outfit + Fraunces */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700&display=swap');

:root {
    /* Marine palette */
    --pri: #F0F7FC;
    --sec: #7EB8DA;
    --acc: #0D5C63;
    --dark: #1A3A52;
    --sea-light: #B8DEE8;
    --sea-deep: #2E7D8A;
    --textDark: #0B2D3D;
    --textMid: #1A3A52;
    --textLight: #4A6B7A;

    /* Typography — new */
    --font-heading: 'Fraunces', serif;
    --font-body: 'Outfit', sans-serif;

    /* Spacing — refreshed */
    --padding-section-v: clamp(56px, 10vw, 120px);
    --padding-section-h: clamp(24px, 6vw, 88px);

    /* Shapes */
    --border-radius-btn: 14px;
    --border-radius-card: 24px;
    --border-radius-section: 32px;
}

/* Base & Reset Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%; /* Prevent text zoom on orientation change */
}

body {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--textDark);
    background: linear-gradient(180deg, #fff 0%, var(--pri) 12%, #fff 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block; /* Remove extra space below images */
}

a {
    color: var(--acc);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover, a:focus {
    color: var(--dark);
    text-decoration: underline;
}

ul {
    list-style: none;
}

/* Typography — new scale */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 0.6em;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.25rem, 5.5vw, 4.25rem);
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.85rem);
    font-weight: 600;
}

h4 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 600;
}

h5 {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 600;
}

h6 {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    font-weight: 600;
}

p {
    margin-bottom: 1em;
}

.luc-muted {
    color: var(--textLight);
    font-size: 0.9rem;
}

/* Layout */
.luc-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--padding-section-h);
}

.luc-section {
    padding-top: var(--padding-section-v);
    padding-bottom: var(--padding-section-v);
    position: relative;
    overflow: hidden;
}

.luc-section--light {
    background: var(--pri);
    border-radius: var(--border-radius-section);
    margin: 0 var(--padding-section-h);
    max-width: calc(1280px + var(--padding-section-h) * 2);
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 40px rgba(13, 92, 99, 0.08);
    border: 1px solid rgba(126, 184, 218, 0.18);
}

.luc-section--light::before {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--acc), var(--sea-deep));
    border-radius: 2px;
    margin: 0 auto 1.5rem;
}

.luc-section--tinted {
    background: linear-gradient(180deg, var(--sea-light) 0%, rgba(184, 222, 232, 0.35) 100%);
    border-radius: var(--border-radius-section);
    margin: 0 var(--padding-section-h);
    max-width: calc(1280px + var(--padding-section-h) * 2);
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 40px rgba(13, 92, 99, 0.07);
    border: 1px solid rgba(126, 184, 218, 0.2);
}

.luc-section--accent-gradient {
    background: linear-gradient(155deg, var(--sea-deep) 0%, var(--acc) 45%, #0F2A3A 100%);
    margin: 0;
    border-radius: 0;
    color: #fff;
}

.luc-section--accent-gradient .luc-section__title,
.luc-section--accent-gradient .luc-section__subtitle { color: #fff; }

.luc-section__title {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 4.2vw, 2.9rem);
    color: var(--dark);
    margin: 0 0 0.5em;
    text-align: center;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.luc-section--light .luc-section__title {
    margin-top: 0;
}

.luc-section__subtitle {
    font-family: var(--font-body);
    text-align: center;
    color: var(--textMid);
    font-size: clamp(1.05rem, 1.9vw, 1.2rem);
    font-weight: 400;
    max-width: 580px;
    margin: 0 auto 2.5em;
    line-height: 1.6;
}

.luc-text-center { text-align: center; }
.luc-text-left { text-align: left; }
.luc-text-white { color: #fff !important; }
.luc-text-shadow { text-shadow: 0 2px 12px rgba(0,0,0,0.4); }
.luc-mt-40 { margin-top: 40px; }

/* Section Separator: Wave — marine colors (embedded in SVG, currentColor often fails in data URI) */
.luc-section-separator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
    transform: translateY(1px);
}

.luc-section-separator--top {
    top: 0;
    bottom: auto;
    transform: rotate(180deg) translateY(1px);
}

/* Default wave: sea-light #B8DEE8 */
.luc-section-separator--wave-svg::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 200%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,60 C300,120 600,0 900,60 C1050,90 1125,75 1200,60 L1200,120 L0,120 Z' fill='%23B8DEE8'/%3E%3Cpath d='M0,80 C200,40 500,100 800,60 C950,40 1075,55 1200,70 L1200,120 L0,120 Z' fill='%23B8DEE8' opacity='0.7'/%3E%3C/svg%3E") repeat-x;
    background-size: 600px 80px;
    animation: wave 12s linear infinite;
}

/* Reversed wave: sea blue #7EB8DA (marine) */
.luc-section-separator--reversed.luc-section-separator--wave-svg::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,60 C300,120 600,0 900,60 C1050,90 1125,75 1200,60 L1200,120 L0,120 Z' fill='%237EB8DA'/%3E%3Cpath d='M0,80 C200,40 500,100 800,60 C950,40 1075,55 1200,70 L1200,120 L0,120 Z' fill='%237EB8DA' opacity='0.8'/%3E%3C/svg%3E");
    animation-direction: reverse;
}

.luc-section--accent-gradient .luc-section-separator--wave-svg::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,60 C300,120 600,0 900,60 C1050,90 1125,75 1200,60 L1200,120 L0,120 Z' fill='%23B8DEE8'/%3E%3Cpath d='M0,80 C200,40 500,100 800,60 C950,40 1075,55 1200,70 L1200,120 L0,120 Z' fill='%23B8DEE8' opacity='0.7'/%3E%3C/svg%3E");
}

@keyframes wave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.luc-section-separator svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: currentColor;
}

/* Header — redesigned */
.luc-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    padding: 20px 0;
    border-bottom: 2px solid transparent;
}

.luc-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 32px rgba(13, 92, 99, 0.08);
    border-bottom-color: rgba(126, 184, 218, 0.25);
}

.luc-header__content,
.luc-header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    gap: 24px;
}

.luc-header__container {
    width: 100%;
}

.luc-logo,
.luc-header__logo {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    letter-spacing: -0.02em;
}

.luc-header__logo:hover {
    color: var(--sea-deep);
}

.luc-logo__icon {
    font-size: 1.5em; /* Adjust to logo text size */
    line-height: 1;
}

/* Desktop Navigation */
.luc-nav__list {
    display: none; /* Hidden on mobile by default */
    gap: 32px;
}

.luc-nav__item a {
    color: var(--textMid);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    display: inline-block;
}

.luc-nav__item a:hover,
.luc-nav__item a.active,
.luc-nav__link--active {
    color: var(--sea-deep);
    text-decoration: none;
}

.luc-nav__item a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--sea-deep);
    transition: width 0.3s ease;
}

.luc-nav__item a:hover::after,
.luc-nav__item a.active::after,
.luc-nav__item a.luc-nav__link--active::after {
    width: 100%;
}

/* Dropdown Navigation — click to open */
.luc-nav__item--dropdown {
    position: relative;
}

/* Плашка выпадающего меню — ровный прямоугольник */
.luc-dropdown,
.luc-nav__dropdown-content {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    margin: 0;
    margin-top: 8px;
    padding: 0;
    list-style: none;
    background: #fff;
    width: 220px;
    box-sizing: border-box;
    box-shadow: 0 10px 28px rgba(13, 92, 99, 0.12);
    z-index: 50;
    border-radius: 12px;
    border: 1px solid rgba(126, 184, 218, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    overflow: hidden;
    isolation: isolate;
}

.luc-nav__item--dropdown.open .luc-dropdown,
.luc-nav__dropdown:hover .luc-nav__dropdown-content {
    display: block;
    opacity: 1;
    visibility: visible;
}

.luc-dropdown li,
.luc-nav__dropdown-content li {
    margin: 0;
    padding: 0;
    list-style: none;
    display: block;
}

.luc-dropdown__link,
.luc-nav__dropdown-content a {
    display: block;
    padding: 12px 20px;
    color: var(--textDark);
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s ease, color 0.15s ease;
    box-sizing: border-box;
    line-height: 1.4;
}

.luc-dropdown__link:hover,
.luc-dropdown__link--active,
.luc-nav__dropdown-content a:hover {
    background: var(--pri);
    color: var(--sea-deep);
    text-decoration: none;
}

.luc-dropdown__link::after,
.luc-nav__dropdown-content a::after {
    display: none;
}

/* Destinations: ссылка без подчёркивания, стрелка отдельным элементом */
.luc-nav__item--dropdown .luc-nav__link--dropdown::after {
    display: none;
}

.luc-nav__item--dropdown .luc-nav__link--dropdown {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
}

.luc-nav__arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid var(--sea-deep);
    margin-left: 6px;
    vertical-align: middle;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.luc-nav__item--dropdown .luc-nav__link--dropdown:hover .luc-nav__arrow,
.luc-nav__item--dropdown.open .luc-nav__link--dropdown .luc-nav__arrow {
    border-top-color: var(--sea-deep);
}

.luc-nav__item--dropdown.open .luc-nav__link--dropdown .luc-nav__arrow {
    border-top: none;
    border-bottom: 5px solid var(--sea-deep);
    transform: translateY(-2px);
}

.luc-nav__item--dropdown .luc-nav__link--dropdown:hover,
.luc-nav__item--dropdown.open .luc-nav__link--dropdown {
    color: var(--sea-deep);
}

/* Mobile Hamburger Menu */
.luc-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 110;
    background: none;
    border: none;
    padding: 0;
    align-self: center;
}

.luc-menu-toggle__line {
    width: 100%;
    height: 2px;
    background-color: var(--dark);
    transition: all 0.3s ease;
}

.luc-nav--mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 105;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.4s ease-out;
    visibility: hidden;
}

.luc-nav--mobile-overlay.open {
    transform: translateX(0);
    visibility: visible;
}

.luc-nav--mobile-overlay .luc-nav__list {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 24px;
}

.luc-nav--mobile-overlay .luc-nav__item a {
    font-size: 1.8rem;
    color: var(--dark);
    font-weight: 600;
}
.luc-nav--mobile-overlay .luc-nav__item a::after {
    display: none;
}
.luc-nav--mobile-overlay .luc-nav__item a:hover {
    color: var(--acc);
}

.luc-nav--mobile-overlay .luc-nav__dropdown-content {
    position: static;
    display: flex;
    flex-direction: column;
    box-shadow: none;
    background-color: transparent;
    padding: 0;
    opacity: 1;
    transform: translateY(0);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.luc-nav--mobile-overlay .luc-nav__dropdown.open .luc-nav__dropdown-content {
    max-height: 300px; /* Sufficient height for all dropdown items */
}

.luc-nav--mobile-overlay .luc-nav__dropdown-content a {
    font-size: 1.4rem;
    padding: 8px 0;
    color: var(--textMid);
    font-weight: 500;
}

/* Hamburger menu animation */
.luc-menu-toggle.open .luc-menu-toggle__line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.luc-menu-toggle.open .luc-menu-toggle__line:nth-child(2) {
    opacity: 0;
}

.luc-menu-toggle.open .luc-menu-toggle__line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}


/* Hero Section */
.luc-hero {
    min-height: 100svh;
    background: linear-gradient(160deg, var(--sea-deep) 0%, var(--dark) 50%, #0B2D3D 100%);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.luc-hero--small {
    min-height: 40vh;
}

.luc-hero--gradient {
    background: linear-gradient(155deg, var(--sea-deep) 0%, var(--acc) 45%, #0F2A3A 100%);
}

.luc-hero__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    z-index: 0;
}

.luc-hero__canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.luc-hero__content {
    position: relative;
    z-index: 1;
    padding: var(--padding-section-v) var(--padding-section-h);
    max-width: 900px;
}

.luc-hero__headline,
.luc-hero__content h1 {
    font-family: var(--font-heading);
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
    margin-bottom: 0.4em;
    font-size: clamp(2.25rem, 5.5vw, 4.25rem);
    letter-spacing: -0.03em;
}

.luc-hero__tagline {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    letter-spacing: 0.02em;
    margin-bottom: 0.5em;
}

.luc-hero__subheadline,
.luc-hero__content p {
    color: rgba(255,255,255,0.95);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2em;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Hero Line Sweep Animation Canvas Placeholder */
.luc-hero__animation-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.3; /* Subtle effect */
}

/* Buttons */
.luc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--border-radius-btn);
    background: linear-gradient(135deg, var(--sec) 0%, var(--sea-deep) 100%);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    min-height: 48px;
    box-shadow: 0 6px 20px rgba(13, 92, 99, 0.25);
    text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.luc-btn:hover {
    background: linear-gradient(135deg, var(--sea-deep) 0%, var(--acc) 100%);
    box-shadow: 0 8px 28px rgba(13, 92, 99, 0.35);
    transform: translateY(-2px);
    text-decoration: none;
    color: #fff;
}

.luc-btn--outline {
    background: transparent;
    border: 2px solid var(--sea-deep);
    color: var(--sea-deep);
    box-shadow: none;
    text-shadow: none;
}

.luc-btn--outline:hover {
    background: var(--sea-deep);
    color: #fff;
    box-shadow: none;
}

.luc-btn--secondary {
    background: rgba(255,255,255,0.95);
    color: var(--acc);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.luc-btn--secondary:hover {
    background: #fff;
    color: var(--dark);
    box-shadow: 0 6px 24px rgba(13, 92, 99, 0.15);
}

.luc-btn--small {
    padding: 10px 20px;
    min-height: 40px;
    font-size: 0.9rem;
}


/* Cards */
.luc-card {
    background: #fff;
    border-radius: var(--border-radius-card);
    box-shadow: 0 8px 32px rgba(13, 92, 99, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(126, 184, 218, 0.2);
}

.luc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(13, 92, 99, 0.14);
}

.luc-card--elevated {
    box-shadow: 0 12px 40px rgba(13, 92, 99, 0.1);
}
.luc-card--elevated:hover {
    box-shadow: 0 20px 56px rgba(13, 92, 99, 0.16);
}

.luc-card__content {
    padding: 26px 24px;
}

.luc-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.luc-card__description {
    font-family: var(--font-body);
    font-size: 0.975rem;
    color: var(--textMid);
    margin-bottom: 18px;
    line-height: 1.6;
}

.luc-card__img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* Feature cards (Our Edge) */
.luc-feature-card {
    background: #fff;
    border-radius: var(--border-radius-card);
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 6px 24px rgba(13, 92, 99, 0.06);
    border: 1px solid rgba(126, 184, 218, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.luc-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(13, 92, 99, 0.12);
}

.luc-feature-card__icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin: 0 auto 16px;
    display: block;
}

.luc-feature-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.luc-feature-card__description {
    font-family: var(--font-body);
    font-size: 0.975rem;
    color: var(--textMid);
    line-height: 1.6;
    margin: 0;
}

/* Image Containers for Cards */
.luc-image-container {
    overflow: hidden;
    position: relative; /* For overlays/text on images */
}

.luc-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
}

.luc-image-container:hover img {
    transform: scale(1.05);
}

/* Grids */
.luc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(24px, 4vw, 40px);
}

.luc-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.luc-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.luc-grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.luc-grid--4-cols { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.luc-grid--3-cols { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

@media (min-width: 768px) {
    .luc-grid-2 { grid-template-columns: repeat(2, 1fr); }
    .luc-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .luc-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .luc-grid-3 { grid-template-columns: repeat(3, 1fr); }
    .luc-grid-4 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1280px) {
    .luc-grid-4 { grid-template-columns: repeat(4, 1fr); }
    .luc-grid--4-cols { grid-template-columns: repeat(4, 1fr); }
    .luc-grid--3-cols { grid-template-columns: repeat(3, 1fr); }
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger for grid children */
.reveal:nth-child(1) { transition-delay: 0.1s; }
.reveal:nth-child(2) { transition-delay: 0.2s; }
.reveal:nth-child(3) { transition-delay: 0.3s; }
.reveal:nth-child(4) { transition-delay: 0.4s; }
.reveal:nth-child(5) { transition-delay: 0.5s; }
.reveal:nth-child(6) { transition-delay: 0.6s; }


/* Popup */
.luc-popup {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none; /* Allow clicks through when not active */
}

.luc-popup.active {
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto; /* Enable clicks when active */
}

.luc-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease forwards; /* forwards to keep state */
}

.luc-popup__box {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 48px 40px;
    max-width: 440px;
    width: 90%;
    text-align: center;
    animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
    transform-origin: center center; /* Ensure correct scaling origin */
}

.luc-popup__icon {
    font-size: 56px;
    margin-bottom: 16px;
    line-height: 1;
}

.luc-popup__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.luc-popup__msg {
    font-size: 1rem;
    color: var(--textMid);
    line-height: 1.6;
    margin-bottom: 24px;
}

.luc-popup .luc-btn {
    width: auto;
    min-width: unset;
    padding: 12px 24px;
    font-size: 0.95rem;
    box-shadow: none;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Cookie Banner */
.luc-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--dark) 0%, var(--acc) 100%);
    color: #fff;
    padding: 16px var(--padding-section-h);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 999;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
}

.luc-cookie-banner p {
    margin: 0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    text-align: center;
    font-size: 0.95rem;
}

.luc-cookie-banner__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.luc-cookie-banner .luc-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    min-width: unset;
    box-shadow: none;
}

.luc-cookie-banner .luc-btn--outline {
    border-color: #fff;
    color: #fff;
}

.luc-cookie-banner .luc-btn--outline:hover {
    background: #fff;
    color: var(--dark);
}

/* Footer — marine, restructured */
.luc-footer {
    background: linear-gradient(180deg, var(--dark) 0%, #0F2A3A 100%);
    color: rgba(255, 255, 255, 0.85);
    padding: 0;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.luc-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--sea-light), var(--sec), var(--sea-deep));
    opacity: 0.9;
}

.luc-footer__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(28px, 4vw, 48px);
    padding: clamp(40px, 8vw, 64px) var(--padding-section-h) clamp(28px, 5vw, 40px);
    max-width: 1280px;
    margin: 0 auto;
}

.luc-footer__col--brand {
    grid-column: 1;
    padding-right: 0;
}

.luc-footer__logo {
    color: #fff;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}

.luc-footer__logo:hover {
    color: var(--sea-light);
    text-decoration: none;
}

.luc-footer__tagline {
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.5;
}

.luc-footer__address {
    font-style: normal;
    margin-bottom: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.luc-footer__address br {
    display: block;
    content: '';
    margin-top: 4px;
}

.luc-footer__contact-info {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.luc-footer__col .luc-footer__heading {
    color: var(--sea-light);
    margin-bottom: 16px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.luc-footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.luc-footer__col li {
    margin-bottom: 10px;
}

.luc-footer__link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}

.luc-footer__link:hover {
    color: #fff;
    padding-left: 4px;
    text-decoration: none;
}

.luc-footer__bottom {
    text-align: center;
    padding: 20px var(--padding-section-h);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.15);
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
}

.luc-footer__copy {
    margin: 0;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 600px) {
    .luc-footer__container {
        grid-template-columns: 1fr 1fr;
    }
    .luc-footer__col--brand {
        grid-column: span 2;
    }
}

@media (min-width: 768px) {
    .luc-footer__container {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 40px 32px;
    }
    .luc-footer__col--brand {
        grid-column: span 1;
    }
}

@media (min-width: 1024px) {
    .luc-footer__container {
        padding-left: var(--padding-section-h);
        padding-right: var(--padding-section-h);
    }
}

/* Forms */
.luc-form-group {
    margin-bottom: 24px;
}

.luc-form-group label {
    display: block;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--textDark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.luc-form-group input[type="text"],
.luc-form-group input[type="email"],
.luc-form-group input[type="tel"],
.luc-form-group input[type="date"],
.luc-form-group textarea,
.luc-form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--textDark);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    min-height: 48px; /* Touch target */
}

.luc-form-group input:focus,
.luc-form-group textarea:focus,
.luc-form-group select:focus {
    border-color: var(--sea-deep);
    outline: none;
    box-shadow: 0 0 0 3px rgba(13, 92, 99, 0.2);
}

.luc-form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Contact Page — layout and form */
.luc-contact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(32px, 5vw, 56px);
    align-items: start;
}

.luc-contact__grid > .luc-section__title {
    grid-column: 1 / -1;
    margin-bottom: 0.25em;
}

.luc-contact__grid > .luc-section__subtitle {
    grid-column: 1 / -1;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .luc-contact__grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

.luc-contact__info .luc-section__title,
.luc-contact__form-container .luc-section__title {
    margin-bottom: 16px;
    font-size: clamp(1.35rem, 2.5vw, 1.6rem);
}

.luc-contact__text {
    color: var(--textMid);
    margin-bottom: 24px;
    line-height: 1.65;
}

.luc-contact__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.luc-contact__list li {
    margin-bottom: 16px;
    padding: 16px 20px;
    background: #fff;
    border-radius: var(--border-radius-card);
    border: 1px solid rgba(126, 184, 218, 0.2);
    box-shadow: 0 2px 12px rgba(13, 92, 99, 0.04);
}

.luc-contact__list a {
    color: var(--sea-deep);
    font-weight: 500;
}

.luc-contact__list address {
    font-style: normal;
    margin-top: 6px;
    line-height: 1.5;
    color: var(--textMid);
}

.luc-contact__form-container {
    background: #fff;
    padding: clamp(28px, 4vw, 40px);
    border-radius: var(--border-radius-section);
    border: 1px solid rgba(126, 184, 218, 0.2);
    box-shadow: 0 8px 32px rgba(13, 92, 99, 0.08);
}

.luc-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.luc-form__group {
    margin-bottom: 22px;
}

.luc-form__label {
    display: block;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--textDark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.luc-contact__form-container .luc-form__input,
.luc-contact__form-container .luc-form__select,
.luc-contact__form-container .luc-form__textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(26, 58, 82, 0.18);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--textDark);
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.luc-contact__form-container .luc-form__input:focus,
.luc-contact__form-container .luc-form__select:focus,
.luc-contact__form-container .luc-form__textarea:focus {
    outline: none;
    border-color: var(--sea-deep);
    box-shadow: 0 0 0 3px rgba(13, 92, 99, 0.12);
}

.luc-contact__form-container .luc-form__input::placeholder,
.luc-contact__form-container .luc-form__textarea::placeholder {
    color: var(--textLight);
}

.luc-contact__form-container .luc-form__select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234A6B7A' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.luc-contact__form-container .luc-form__textarea {
    min-height: 140px;
    resize: vertical;
}

.luc-contact__form-container .luc-form__input--error {
    border-color: #c45c5c;
    box-shadow: 0 0 0 2px rgba(196, 92, 92, 0.15);
}

.luc-contact__form-container .luc-form__submit {
    margin-top: 8px;
    width: 100%;
    min-height: 52px;
}

/* Contact Page — legacy/alias */
.luc-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.luc-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--textDark);
    font-size: 1.05rem;
}

.luc-contact-item__icon {
    color: var(--acc);
    font-size: 1.5rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Destination Cards (Homepage) — name always visible, wave-friendly */
.luc-destination-card {
    position: relative;
    border-radius: var(--border-radius-card);
    overflow: hidden;
    height: 320px;
    display: block;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 12px 40px rgba(13, 92, 99, 0.12);
}

.luc-destination-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.luc-destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 56px rgba(13, 92, 99, 0.18);
}

.luc-destination-card:hover img {
    transform: scale(1.06);
}

.luc-destination-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 45, 61, 0.92) 0%, rgba(26, 58, 82, 0.5) 40%, transparent 70%);
    z-index: 1;
}

.luc-destination-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    color: #fff;
    padding: 28px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 88px;
}

.luc-destination-card__name {
    font-family: var(--font-heading);
    color: #fff;
    margin: 0;
    font-size: clamp(1.35rem, 2.2vw, 1.65rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 16px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.luc-destination-card__flag {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.luc-destination-card__content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 20px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    width: 100%;
}

.luc-destination-card__content h3 {
    color: #fff;
    margin-bottom: 4px;
    font-size: 1.4rem;
}

/* Attraction Cards (Country Pages) */
.luc-attraction-card {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.luc-attraction-card .luc-image-container {
    height: 200px;
    border-radius: var(--border-radius-card) var(--border-radius-card) 0 0;
}

.luc-attraction-card__content {
    padding: 20px;
    background-color: #fff;
    border-radius: 0 0 var(--border-radius-card) var(--border-radius-card);
    flex-grow: 1;
}

.luc-attraction-card__content h4 {
    margin-bottom: 8px;
    color: var(--dark);
}

.luc-attraction-card__city {
    display: inline-block;
    background-color: var(--pri);
    color: var(--textMid);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 12px;
    font-weight: 500;
}

.luc-attraction-card__description {
    font-size: 0.95rem;
    color: var(--textDark);
}

/* Review Cards */
.luc-review-card {
    display: flex;
    flex-direction: column;
    padding: 30px;
    text-align: center;
    background-color: #fff;
}

.luc-review-card__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px auto;
    border: 3px solid var(--sea-deep);
}

.luc-review-card__quote {
    font-style: italic;
    font-size: 1.05rem;
    color: var(--textDark);
    margin-bottom: 20px;
}

.luc-review-card__name {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.luc-review-card__meta {
    font-size: 0.9rem;
    color: var(--textMid);
    margin-bottom: 12px;
}

.luc-review-card__stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.luc-review-card__author {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.luc-review-card__author span {
    display: block;
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--textMid);
}

.luc-overall-rating {
    text-align: center;
    margin-bottom: 40px;
}

.luc-overall-rating h3 {
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.luc-overall-rating__score {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--sea-deep);
    margin-bottom: 10px;
}

.luc-overall-rating__stars {
    font-size: 1.8rem;
    color: #FFD700;
    display: block;
    margin-bottom: 10px;
}

.luc-overall-rating__count {
    font-size: 1rem;
    color: var(--textMid);
}

/* Feature Blocks */
.luc-feature-block {
    text-align: center;
    padding: 20px;
}

.luc-feature-block__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--pri);
    border-radius: 50%;
    flex-shrink: 0;
}

.luc-feature-block__icon img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

.luc-feature-block h3 {
    color: var(--dark);
    margin-bottom: 10px;
}

.luc-feature-block p {
    color: var(--textDark);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Newsletter Section */
.luc-newsletter,
.luc-newsletter-section {
    background: linear-gradient(135deg, var(--sea-light) 0%, var(--sec) 100%);
    color: var(--dark);
    text-align: center;
    border-radius: var(--border-radius-section);
    margin: 0 var(--padding-section-h);
    max-width: calc(1280px + var(--padding-section-h) * 2);
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 24px rgba(13, 92, 99, 0.08);
}

.luc-newsletter-section h2,
.luc-newsletter .luc-section__title {
    color: var(--dark);
}

.luc-newsletter-section p,
.luc-newsletter .luc-section__subtitle {
    color: var(--textMid);
}

.luc-newsletter__form,
.luc-newsletter-form {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
}

.luc-form__input,
.luc-newsletter-form input[type="email"] {
    width: 100%;
    min-width: 200px;
    flex: 1;
    padding: 14px 20px;
    border-radius: var(--border-radius-btn);
    border: 2px solid rgba(26, 58, 82, 0.15);
    font-size: 1rem;
    color: var(--textDark);
    min-height: 48px;
    background: #fff;
}

.luc-form__input:focus,
.luc-newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--sea-deep);
    box-shadow: 0 0 0 3px rgba(13, 92, 99, 0.15);
}

.luc-newsletter-form .luc-btn {
    width: auto;
    max-width: 200px;
}

/* Responsive adjustments */
@media (max-width: 1023px) {
    .luc-nav {
    }
    .luc-nav__list {
        display: none; /* Hide until hamburger opens */
    }
    .luc-nav.open .luc-nav__list {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        margin-top: 12px;
        background: rgba(240, 247, 252, 0.98);
        padding: 24px;
        gap: 20px;
        box-shadow: 0 12px 32px rgba(13, 92, 99, 0.1);
        border-radius: 0 0 16px 16px;
    }
    .luc-nav.open .luc-nav__item--dropdown .luc-dropdown {
        position: static;
        transform: none;
        left: auto;
        margin-top: 12px;
        margin-left: 16px;
        box-shadow: none;
        border: none;
        background: rgba(255,255,255,0.6);
        border-radius: 12px;
        padding: 8px 0;
    }
    .luc-nav.open .luc-nav__item--dropdown.open .luc-dropdown {
        display: block;
        opacity: 1;
        visibility: visible;
    }
    .luc-menu-toggle {
        display: flex; /* Show hamburger */
    }
    .luc-header__content {
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .luc-menu-toggle {
        display: none; /* Hide hamburger */
    }
    .luc-nav__list {
        display: flex; /* Show desktop nav */
    }
    .luc-nav--mobile-overlay {
        display: none; /* Hide mobile overlay */
    }
}

@media (max-width: 767px) {
    .luc-cookie-banner {
        flex-direction: column;
    }
    .luc-cookie-banner__actions {
        width: 100%;
    }
    .luc-cookie-banner .luc-btn {
        flex-grow: 1;
    }
}

/* Country Page specific styles */
.luc-country-hero {
    min-height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.luc-country-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3); /* Dark overlay for text readability */
    z-index: 0;
}

.luc-country-hero__content {
    position: relative;
    z-index: 1;
    padding: var(--padding-section-v) var(--padding-section-h);
    max-width: 900px;
}

.luc-country-hero__flag {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 16px;
    line-height: 1;
    display: block;
}

.luc-country-hero__content h1 {
    color: #fff;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5em;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.luc-country-hero__content p {
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    font-size: clamp(1rem, 2vw, 1.3rem);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.luc-country-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    text-align: center;
    margin-top: 40px;
}

.luc-country-info-item {
    padding: 20px;
    background-color: var(--pri);
    border-radius: var(--border-radius-card);
    color: var(--textDark);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.luc-country-info-item__icon {
    font-size: 2.5rem;
    color: var(--acc);
    margin-bottom: 10px;
}

.luc-country-info-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: var(--dark);
}

.luc-country-info-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--textMid);
}

/* About page specific styles */
.luc-about__intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(24px, 4vw, 40px);
    align-items: start;
}

.luc-about__intro-grid > .luc-section__title {
    grid-column: 1 / -1;
    margin-bottom: 0.25em;
}

.luc-about__intro-grid > .luc-section__subtitle {
    grid-column: 1 / -1;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .luc-about__intro-grid {
        grid-template-columns: 1fr 1fr;
    }

    .luc-about__intro-grid .luc-about__image-container {
        grid-column: 1;
    }

    .luc-about__intro-grid .luc-about__content {
        grid-column: 2;
    }
}

.luc-about__image-container {
    border-radius: var(--border-radius-card);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(13, 92, 99, 0.1);
}

.luc-about__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.luc-about__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.luc-about__text {
    color: var(--textMid);
    line-height: 1.7;
    margin: 0;
}

.luc-about-image {
    width: 100%;
    height: 400px; /* Fixed height for visual consistency */
    object-fit: cover;
    border-radius: var(--border-radius-card);
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.luc-about-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 500;
    color: var(--textMid);
    margin-bottom: 30px;
}

.luc-about-cta {
    text-align: center;
    margin-top: 50px;
}

/* Generic legal/info pages */
.luc-legal-content h1 {
    margin-bottom: 40px;
}

.luc-legal-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.luc-legal-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.luc-legal-content p,
.luc-legal-content ul,
.luc-legal-content ol {
    margin-bottom: 1.2em;
    color: var(--textDark);
    font-size: 1rem;
    line-height: 1.7;
}

.luc-legal-content ul,
.luc-legal-content ol {
    padding-left: 20px;
}

.luc-legal-content li {
    margin-bottom: 0.5em;
}

.luc-legal-content strong {
    font-weight: 700;
    color: var(--dark);
}
