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

:root {
    --sand: #F5F0EB;
    --sand-dark: #E8E0D8;
    --cream: #FDFBF9;
    --charcoal: #2A2A2A;
    --charcoal-light: #4A4A4A;
    --slate: #6B6B6B;
    --accent: #e51f1c;
    --accent-light: #ff4a47;
    --accent-softer: #fde8e8;
    --gold: #fea910;
    --gold-light: #fde4a0;
    --white: #FFFFFF;
    --radius: 12px;
    --radius-lg: 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* -- NAV -- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 2rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(253, 251, 249, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(254, 169, 16, 0.15);
    transition: box-shadow 0.3s ease;
}

nav.scrolled {
    box-shadow: 0 2px 30px rgba(0,0,0,0.06);
}

.nav-logo {
    display: flex;
}

.nav-logo img {
    width: 150px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--slate);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: color 0.25s ease;
}

.nav-links a:hover {
    color: var(--charcoal);
}

.lang-switch {
    position: relative;
}

.lang-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(42, 42, 42, 0.12);
    background: rgba(255,255,255,0.85);
    color: var(--charcoal);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
}

.lang-trigger i {
    font-size: 1rem;
}

.lang-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 160px;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    padding: 0.4rem;
    display: none;
    flex-direction: column;
    gap: 0.2rem;
    z-index: 20;
}

.lang-menu a {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 0.6rem;
    border-radius: 10px;
    font-size: 0.85rem;
    color: var(--charcoal);
    text-decoration: none;
    transition: background 0.2s ease;
}

.lang-menu a:hover {
    background: rgba(254, 169, 16, 0.12);
}

.lang-menu a.active {
    background: rgba(229, 31, 28, 0.08);
    color: var(--charcoal);
    font-weight: 600;
}

.lang-switch.open .lang-menu {
    display: flex;
}

.nav-cta {
    background: var(--charcoal) !important;
    color: var(--white) !important;
    padding: 0.55rem 1.4rem;
    border-radius: 50px;
    font-size: 1rem !important;
    transition: background 0.25s ease, transform 0.2s ease !important;
    white-space: nowrap;
    text-transform: uppercase;
}

.nav-cta:hover {
    background: var(--accent) !important;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* -- HERO -- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 2rem 80px;
    position: relative;
    overflow: hidden;
}

/* Hero background image via SVG/CSS - using an evocative Sicilian coastal scene */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
            linear-gradient(
                    165deg,
                    rgba(42, 42, 42, 0.75) 0%,
                    rgba(229, 31, 28, 0.50) 50%,
                    rgba(42, 42, 42, 0.82) 100%
            ),
            url('https://images.unsplash.com/photo-1662750726419-c4e0a0f4637b?w=1600&q=80&auto=format&fit=crop') center center / cover no-repeat;
}

/* Fallback gradient in case image doesn't load */
.hero-bg-fallback {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(165deg, #1a2a3a 0%, var(--accent) 50%, #0d1b2a 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(254,169,16,0.10) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229,31,28,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(200, 169, 110, 0.5);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--gold-light);
    margin-bottom: 1.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease both;
    backdrop-filter: blur(8px);
}

.hero-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s 0.15s ease both;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.9);
    max-width: 480px;
    line-height: 1.8;
    margin-bottom: 2.2rem;
    animation: fadeInUp 0.8s 0.3s ease both;
}

.hero-actions,
.hero-actions-sub {
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fadeInUp 0.8s 0.45s ease both;
}
.hero-actions-sub {
    gap: 2rem;
}
.hero-actions-sub span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-actions-sub {
    margin-top: 20px;
}
.hero-actions-sub a {
    color: white;
    font-size: 16px;
    text-decoration: none;
}
.hero-actions-sub i {
    color: white;
    font-size: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gold);
    color: var(--charcoal);
}

.btn-primary:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(229,31,28,0.2);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.6);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 0.8s 0.3s ease both;
}

.hero-card {
    background: rgba(253, 251, 249, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25), 0 1px 3px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 420px;
    position: relative;
}

.hero-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, var(--gold-light) 0%, transparent 50%, var(--accent-softer) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.hero-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.card-route {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.card-route:last-of-type {
    border-bottom: none;
}

.route-label {
    display: flex;
    gap: 8px;
}

.route-city {
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--charcoal);
}

.route-arrow {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.route-time {
    font-size: 0.82rem;
    color: var(--slate);
}

.hero-card-bottom {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-label {
    font-size: 0.78rem;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.card-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 600;
}

/* -- SECTION COMMON -- */
section {
    padding: 100px 2rem;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 24px;
    height: 1.5px;
    background: var(--gold);
}

.section-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--charcoal);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--slate);
    max-width: 560px;
    line-height: 1.8;
}

/* -- SERVICES -- */
#services {
    background: var(--white);
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header .section-subtitle {
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--card-bg, var(--cream)) center center / cover no-repeat;
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(20, 20, 20, 0.92) 0%, rgba(20, 20, 20, 0.65) 55%, rgba(20, 20, 20, 0.85) 100%);
    z-index: 0;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    font-size: 1.5rem;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(6px);
}

.service-icon svg {
    stroke: var(--white) !important;
}

.service-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
    color: var(--white);
}

.service-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.86);
    line-height: 1.7;
}

/* -- RATES -- */
#rates {
    background: var(--sand);
}

.rates-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.rates-header .section-subtitle {
    margin: 0 auto;
}

.rates-note {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-softer);
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.5rem 1.1rem;
    border-radius: 50px;
    margin-top: 1rem;
}

.rates-note::before {
    content: 'ℹ';
    font-size: 0.9rem;
}

.rates-table-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.05);
}

.rates-table-viewport {
    overflow: hidden;
    transition: max-height 0.6s ease;
}

.rates-toggle {
    width: 100%;
    border: none;
    background: var(--sand);
    color: var(--charcoal);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.9rem 1.2rem;
    cursor: pointer;
    transition: background 0.2s ease;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.rates-toggle:hover {
    background: var(--sand-dark);
}

.rates-mobile-from {
    display: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    color: var(--cream);
    font-weight: 600;
    background: var(--charcoal-light);
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background: var(--charcoal);
}

thead th {
    padding: 1.1rem 1.5rem;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.6);
}

thead th:last-child,
thead th:nth-child(3),
thead th:nth-child(4) {
    text-align: center;
}

tbody tr {
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: background 0.2s ease;
}

tbody tr:last-child {
    border-bottom: none;
}

tbody tr:hover {
    background: var(--sand);
}

tbody td {
    padding: 1.1rem 1.5rem;
    font-size: 0.92rem;
    color: var(--charcoal);
    vertical-align: middle;
}

.td-route {
    font-weight: 600;
}

.td-route .route-from {
    color: var(--charcoal);
}

.td-route .route-sep {
    color: var(--gold);
    margin: 0 0.4rem;
    font-size: 0.85rem;
}

.td-route .route-to {
    color: var(--charcoal);
}

.td-distance {
    color: var(--slate);
    font-size: 0.85rem;
}

.td-duration {
    text-align: center;
    color: var(--slate);
    font-size: 0.85rem;
}

.td-pax {
    text-align: center;
    font-size: 0.82rem;
    color: var(--slate);
}

.td-price {
    text-align: center;
}

.price-badge {
    display: inline-block;
    background: var(--accent-softer);
    color: var(--accent);
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    white-space: nowrap;
}

.price-badge.price-highlight {
    background: linear-gradient(135deg, var(--gold-light), rgba(200,169,110,0.25));
    color: #8a6220;
}

.rates-footer-note {
    padding: 1.2rem 1.5rem;
    background: var(--cream);
    border-top: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.rates-footer-note span {
    font-size: 0.8rem;
    color: var(--slate);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.rates-footer-note span::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
}

.rates-disclaimer {
    margin-top: 1rem;
    padding: 1rem 1.2rem;
    background: var(--gold-light);
    border-left: 4px solid var(--gold);
    border-radius: 12px;
    font-size: 1.1rem;
    color: var(--charcoal);
    font-weight: 600;
    text-align: center;
}

.payment-methods {
    padding: 1.8rem 1.7rem 2.2rem;
    background: linear-gradient(135deg, rgba(254, 169, 16, 0.12), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(254, 169, 16, 0.25);
    border-radius: 0 0 18px;
    box-shadow: 0 18px 40px rgba(42, 42, 42, 0.08);
    position: relative;
    overflow: hidden;
}

.payment-intro {
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1.1rem;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    letter-spacing: 0.01em;
}

.payment-intro::before {
    content: '✔';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(254, 169, 16, 0.2);
    color: var(--gold);
    font-size: 0.85rem;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.payment-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.15rem;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid rgba(229, 31, 28, 0.18);
    font-size: 0.92rem;
    color: var(--charcoal);
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(42, 42, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.payment-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 24px rgba(42, 42, 42, 0.1);
    border-color: rgba(229, 31, 28, 0.3);
}

.payment-icon {
    width: 36px;
    height: 36px;
    color: var(--gold);
    font-size: 26px;
    border-radius: 10px;
    background: rgba(229, 31, 28, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* -- WHATSAPP WIDGET -- */
.whatsapp-widget {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.8rem;
}

.wa-panel {
    width: 320px;
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(42, 42, 42, 0.18);
    overflow: hidden;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    display: none;
}

.whatsapp-widget.open .wa-panel {
    opacity: 1;
    display: block;
    transform: translateY(0);
    pointer-events: auto;
}

.wa-header {
    background: #25D366;
    color: #0f3d2b;
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    font-size: 0.95rem;
}

.wa-close {
    background: rgba(15, 61, 43, 0.12);
    border: none;
    color: #0f3d2b;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
}

.wa-body {
    padding: 1.1rem 1.2rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.wa-message {
    background: #f1f5f3;
    border-radius: 14px;
    padding: 0.9rem 1rem;
    font-size: 0.88rem;
    color: var(--charcoal);
}

.wa-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    background: #25D366;
    color: #0f3d2b;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.28);
}

.wa-contact:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 24px rgba(37, 211, 102, 0.36);
}

.wa-meta {
    font-size: 0.78rem;
    color: var(--slate);
}

.wa-fab {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: #25D366;
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-fab:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 28px rgba(37, 211, 102, 0.45);
}

.wa-fab svg {
    width: 26px;
    height: 26px;
    fill: white;
}

/* -- DESTINATIONS -- */
#destinations {
    background: var(--cream);
}

.destinations-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: center;
}

.destinations-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 2rem;
}

.destinations-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: var(--white);
    border-radius: var(--radius);
    transition: all 0.3s ease;
    cursor: default;
}

.destinations-item:hover {
    transform: translateX(6px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.destinations-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

.destinations-name {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--charcoal);
    flex: 1;
}

.destinations-detail {
    font-size: 0.82rem;
    color: var(--slate);
}

.destinations-visual {
    position: relative;
}

.destinations-map-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 12px 40px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.destinations-map-svg {
    width: 100%;
    height: auto;
}

.map-vector {
    stroke: #ef3030;
    stroke-width: 2.2;
    stroke-dasharray: 9,6;
    opacity: 0.95;
}

.map-label {
    fill: #111111;
    font-size: 34px;
    font-family: 'Manrope', sans-serif;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.map-origin {
    font-size: 38px;
}

.map-point {
    fill: #c0392b;
    stroke: white;
    stroke-width: 2.2;
}

/* -- FEATURES -- */
#why-us {
    background: var(--charcoal);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

#why-us::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(200,169,110,0.08) 0%, transparent 60%);
    pointer-events: none;
}

#why-us .section-title {
    color: var(--white);
}

#why-us .section-subtitle {
    color: rgba(255,255,255,0.6);
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-header .section-subtitle {
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(200,169,110,0.3);
    transform: translateY(-3px);
}

.feature-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.8rem;
}

.feature-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(200,169,110,0.12);
    border: 1px solid rgba(200,169,110,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.feature-card p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

/* -- TESTIMONIALS -- */
#reviews {
    background: var(--sand);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.testimonials-header .section-subtitle {
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 0.92rem;
    color: var(--charcoal-light);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-softer);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--accent);
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--charcoal);
}

.testimonial-detail {
    font-size: 0.78rem;
    color: var(--slate);
}

/* -- CTA -- */
.cta-section {
    padding: 80px 2rem;
    background:
            linear-gradient(165deg, rgba(15, 24, 32, 0.85) 0%, rgba(229, 31, 28, 0.35) 55%, rgba(15, 24, 32, 0.9) 100%),
            url('https://images.unsplash.com/photo-1617103099853-6dd647eb1489?q=80&w=1470&auto=format&fit=crop') center center / cover no-repeat;

}

.cta-section a {
    color: white;
}

.cta-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, var(--charcoal) 0%, #1a2a3a 100%);
    border-radius: 28px;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,169,110,0.15) 0%, transparent 60%);
    pointer-events: none;
}

.cta-inner .section-title {
    color: var(--white);
    margin-bottom: 0.8rem;
}

.cta-inner p {
    color: rgba(255,255,255,0.6);
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.cta-inner .btn-cta-main {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    background: var(--gold);
    color: var(--charcoal);
}

.cta-inner .btn-cta-main:hover {
    background: var(--white);
    box-shadow: 0 8px 30px rgba(200,169,110,0.3);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}
.cta-actions a {
    white-space: nowrap;
}

.cta-contacts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2rem;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--cream);
    font-size: 1.2rem;
}

.cta-contact-item i {
    color: var(--gold);
}
.cta-contact-item a {
    text-decoration: none;
    white-space: nowrap;
}

/* -- FOOTER -- */
footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.4);
    padding: 3rem 2rem 2rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    display: flex;
}

.footer-logo img {
    width: 150px;
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-links a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-copy {
    font-size: 0.78rem;
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* -- ANIMATIONS -- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* -- RESPONSIVE -- */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0 1.2rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        border-bottom: 1px solid rgba(254, 169, 16, 0.15);
        box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    }

    .nav-links.open {
        display: flex;
    }

    .lang-switch {
        width: 100%;
    }

    .lang-trigger {
        width: 100%;
        justify-content: space-between;
    }

    .lang-menu {
        position: static;
        box-shadow: none;
        background: rgba(255,255,255,0.7);
        border: 1px solid rgba(254, 169, 16, 0.2);
        margin-top: 0.4rem;
    }

    .hamburger {
        display: flex;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero {
        padding: 110px 1.5rem 60px;
    }

    .hero-card {
        max-width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .destinations-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .destinations-visual {
        order: -1;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

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

    .cta-inner {
        padding: 3rem 1.5rem;
    }

    .cta-contacts {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-inner {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .rates-table-wrap {
        overflow-x: auto;
    }

    table {
        min-width: 560px;
    }

    #rates table th:nth-child(2),
    #rates table th:nth-child(3),
    #rates table td.td-distance,
    #rates table td.td-duration {
        display: none;
    }

    .rates-mobile-from {
        display: block;
    }

    #rates .td-route .route-from,
    #rates .td-route .route-sep {
        display: none;
    }

    #rates table {
        min-width: 0;
    }

    .rates-footer-note {
        gap: 1rem;
    }

    .payment-grid {
        grid-template-columns: 1fr;
    }
}

/* -- POLICY -- */
.policy-page {
    padding: 7rem 8vw 5rem;
    background: var(--cream);
}

.policy-hero {
    max-width: 900px;
    margin: 0 auto 2.5rem;
    padding: 2.5rem 2.75rem 2.25rem;
    background: var(--white);
    border: 1px solid var(--sand-dark);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 60px rgba(42, 42, 42, 0.08);
}

.policy-title {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin: 0.6rem 0 0.5rem;
    letter-spacing: -0.02em;
}

.policy-subtitle {
    color: var(--slate);
    font-size: 1rem;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2.5rem 2.75rem 3rem;
    background: var(--white);
    border: 1px solid var(--sand-dark);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 60px rgba(42, 42, 42, 0.06);
}

.policy-content h2 {
    font-size: 1.25rem;
    margin: 2rem 0 0.6rem;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content p {
    color: var(--slate);
    margin-bottom: 1.1rem;
}

@media (max-width: 768px) {
    .policy-page {
        padding: 6rem 1.5rem 4rem;
    }

    .policy-hero,
    .policy-content {
        padding: 2rem 1.5rem;
    }
}
