/* ===================================
   Arie Skipper & Chef - Main Styles
   =================================== */

/* --- CSS Variables --- */
:root {
    --primary: #0c4a6e;
    --primary-light: #0369a1;
    --primary-dark: #082f49;
    --accent: #d4a855;
    --accent-light: #e8c97a;
    --accent-dark: #b8923e;
    --white: #ffffff;
    --off-white: #f8fafc;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Heebo', sans-serif;
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    direction: rtl;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Section Styling --- */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-header-light .section-title,
.section-header-light .section-desc {
    color: var(--white);
}

.section-header-light .section-tag {
    color: var(--accent-light);
    border-color: var(--accent);
}

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    padding: 4px 16px;
    border: 1px solid var(--accent);
    border-radius: 50px;
}

.section-title {
    font-family: 'Frank Ruhl Libre', 'Heebo', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.3;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-500);
    line-height: 1.8;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: 'Heebo', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 168, 85, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

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

.btn-small {
    padding: 10px 24px;
    font-size: 0.875rem;
    background: var(--white);
    color: var(--primary);
    border-radius: 50px;
}

.btn-small:hover {
    background: var(--accent);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.navbar.scrolled .logo-img {
    filter: none;
    height: 45px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    align-self: flex-start;
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-text {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* --- Nav Social Icons --- */
.nav-social {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: var(--gray-600);
    transition: var(--transition);
}

.nav-social a:hover {
    color: var(--accent);
    background: var(--gray-100);
}

.navbar:not(.scrolled) .nav-social a {
    color: rgba(255,255,255,0.8);
}

.navbar:not(.scrolled) .nav-social a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.15);
}

/* --- Language Switcher --- */
.nav-lang {
    position: relative;
    list-style: none;
    margin-right: 8px;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 8px;
    color: rgba(255,255,255,0.85);
    font-family: 'Heebo', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.lang-toggle:hover {
    background: rgba(255,255,255,0.25);
    color: var(--white);
}

.navbar.scrolled .lang-toggle {
    color: var(--gray-600);
    background: var(--gray-100);
    border-color: var(--gray-200);
}

.navbar.scrolled .lang-toggle:hover {
    background: var(--gray-200);
    color: var(--primary);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 140px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-8px);
    transition: var(--transition);
    z-index: 1002;
}

.nav-lang:hover .lang-dropdown,
.nav-lang.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.lang-option {
    display: block;
    padding: 8px 14px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: 8px;
    transition: var(--transition);
    text-align: center;
}

.lang-option:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.lang-option.active {
    background: var(--primary);
    color: var(--white);
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.15);
}

.navbar.scrolled .nav-link {
    color: var(--gray-600);
}

.navbar.scrolled .nav-link:hover {
    color: var(--primary);
    background: var(--gray-100);
}

.nav-cta {
    background: var(--accent) !important;
    color: var(--white) !important;
    border-radius: 50px !important;
    padding: 8px 24px !important;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
    background: var(--gray-800);
}

/* ===================================
   HERO
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(8, 47, 73, 0.6) 0%,
        rgba(12, 74, 110, 0.5) 50%,
        rgba(8, 47, 73, 0.75) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: var(--accent-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s forwards;
}

.hero-title {
    font-family: 'Frank Ruhl Libre', 'Heebo', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s 0.5s forwards;
}

.hero-highlight {
    color: var(--accent-light);
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeUp 0.8s 0.7s forwards;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 0.9s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0;
    animation: fadeIn 1s 1.5s forwards;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255,255,255,0.5);
    border-bottom: 2px solid rgba(255,255,255,0.5);
    transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
}

/* ===================================
   SERVICES
   =================================== */
.services {
    padding: 100px 0;
    background: var(--off-white);
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-card-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
    transform: scale(1.08);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 74, 110, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-card-overlay {
    opacity: 1;
}

.service-card-content {
    padding: 28px;
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.service-card-content h3 {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.service-card-content p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ===================================
   CHEF SECTION
   =================================== */
.chef-section {
    padding: 100px 0;
    background: var(--white);
}

.chef-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.chef-desc {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 32px;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--gray-50);
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid transparent;
}

.menu-item:hover {
    background: var(--white);
    border-color: var(--accent);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.menu-icon {
    font-size: 1.5rem;
}

.menu-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-700);
}

.chef-visual {
    position: relative;
}

.chef-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.chef-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.chef-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--accent);
    color: var(--white);
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
}

.badge-number {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.4;
}

/* ===================================
   DESTINATIONS
   =================================== */
.destinations {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.destinations-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.destinations-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destinations-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 47, 73, 0.88);
}

.destinations .container {
    position: relative;
    z-index: 2;
}

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

.dest-card {
    text-align: center;
    padding: 36px 24px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.dest-card:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--accent);
    transform: translateY(-4px);
}

.dest-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.dest-card h3 {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.dest-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

/* ===================================
   FLEET
   =================================== */
.fleet {
    padding: 100px 0;
    background: var(--off-white);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.fleet-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.fleet-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.fleet-card-img {
    height: 180px;
    overflow: hidden;
}

.fleet-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.fleet-card-content {
    padding: 16px 20px;
}

.fleet-card-content h3 {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.fleet-card-content p {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.fleet-tag {
    display: inline-block;
    padding: 4px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-dark);
    background: rgba(212, 168, 85, 0.12);
    border-radius: 50px;
}

/* ===================================
   EVENTS
   =================================== */
.events {
    padding: 100px 0;
    background: var(--white);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.event-item {
    text-align: center;
    padding: 32px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.event-item:hover {
    border-color: var(--accent);
    background: var(--gray-50);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.event-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 12px;
}

.event-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-700);
}

.events-cta {
    text-align: center;
}

.events-cta p {
    font-size: 1.05rem;
    color: var(--gray-500);
    margin-bottom: 20px;
}

/* ===================================
   GALLERY STRIP
   =================================== */
.gallery-strip {
    overflow: hidden;
    background: var(--gray-900);
    padding: 4px 0;
}

.gallery-scroll {
    display: flex;
    gap: 4px;
    animation: scrollGallery 30s linear infinite;
    width: max-content;
}

.gallery-scroll img {
    height: 200px;
    width: auto;
    object-fit: cover;
    border-radius: 4px;
    opacity: 0.85;
    transition: opacity var(--transition);
}

.gallery-scroll img:hover {
    opacity: 1;
}

/* ===================================
   CONTACT
   =================================== */
.contact {
    padding: 100px 0;
    background: var(--off-white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-desc {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.contact-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 12px;
    flex-shrink: 0;
}

.whatsapp-icon {
    background: #25D366;
}

.contact-item-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-400);
    font-weight: 500;
}

.contact-item-value {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-700);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.contact-form h3 {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: 'Heebo', sans-serif;
    font-size: 0.95rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    background: var(--gray-50);
    color: var(--gray-800);
    transition: var(--transition);
    direction: rtl;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(212, 168, 85, 0.15);
}

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

.form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 16px center;
}

/* Form Success State */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.form-success h3 {
    color: var(--primary);
    margin-bottom: 8px;
}

.form-success p {
    color: var(--gray-500);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-icon {
    color: var(--accent);
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-top: 4px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--gray-400);
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact a {
    font-size: 0.9rem;
    color: var(--gray-400);
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--white);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--gray-600);
}

/* ===================================
   FLOATING BUTTONS
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulseGreen 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.mobile-call-float {
    display: none;
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(12, 74, 110, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.mobile-call-float:hover {
    transform: scale(1.1);
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
    40% { transform: rotate(45deg) translateY(8px); }
    60% { transform: rotate(45deg) translateY(4px); }
}

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

@keyframes pulseGreen {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Scroll animations */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

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

    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .chef-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .chef-img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    /* Nav mobile */
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 4px;
        box-shadow: var(--shadow-xl);
        transition: right 0.4s ease;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        color: var(--gray-700) !important;
        padding: 12px 16px;
        font-size: 1rem;
        border-radius: var(--radius);
    }

    .nav-link:hover {
        background: var(--gray-100) !important;
        color: var(--primary) !important;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav-social {
        justify-content: center;
        gap: 8px;
        padding: 8px 0;
    }

    .nav-social a {
        color: var(--gray-600);
        width: 40px;
        height: 40px;
    }

    .nav-lang {
        margin-right: 0;
        width: 100%;
    }

    .lang-toggle {
        width: 100%;
        justify-content: center;
        color: var(--gray-700) !important;
        background: var(--gray-100) !important;
        border-color: var(--gray-200) !important;
        padding: 10px 16px;
    }

    .lang-dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        box-shadow: none;
        border: none;
        padding: 4px 0;
        margin-top: 4px;
    }

    .nav-lang.open .lang-dropdown {
        display: block;
        transform: none;
    }

    /* Sections */
    .services-grid,
    .fleet-grid {
        grid-template-columns: 1fr;
    }

    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-scroll {
        display: none;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .services,
    .chef-section,
    .destinations,
    .fleet,
    .events,
    .contact {
        padding: 70px 0;
    }

    .contact-form-wrapper {
        padding: 28px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Mobile call button */
    .mobile-call-float {
        display: flex;
    }

    .gallery-scroll img {
        height: 150px;
    }

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

@media (max-width: 480px) {
    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .event-item {
        padding: 24px 12px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 20px 24px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 280px;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-content a {
    color: var(--accent-light);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-cookie {
    padding: 10px 28px;
    font-size: 0.9rem;
}

.btn-cookie-decline {
    padding: 10px 20px;
    font-size: 0.9rem;
    font-family: 'Heebo', sans-serif;
    font-weight: 500;
    background: transparent;
    color: var(--gray-400);
    border: 1px solid var(--gray-600);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-decline:hover {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

@media (max-width: 600px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
   ACCESSIBILITY TOOLBAR
   =================================== */
.a11y-toggle {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--white);
    border-right: none;
    border-radius: 8px 0 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.a11y-toggle:hover {
    background: var(--primary-light);
    width: 50px;
}

.a11y-panel {
    position: fixed;
    top: 50%;
    right: -320px;
    transform: translateY(-50%);
    width: 300px;
    max-height: 80vh;
    background: var(--white);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    box-shadow: var(--shadow-xl);
    z-index: 10001;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.a11y-panel.open {
    right: 0;
}

.a11y-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-200);
}

.a11y-header h3 {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
}

.a11y-close {
    width: 32px;
    height: 32px;
    background: var(--gray-100);
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    color: var(--gray-600);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.a11y-close:hover {
    background: var(--gray-200);
    color: var(--gray-800);
}

.a11y-options {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.a11y-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: 'Heebo', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
    transition: var(--transition);
    text-align: start;
}

.a11y-btn:hover {
    background: var(--gray-100);
    border-color: var(--primary-light);
    color: var(--primary);
}

.a11y-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.a11y-btn-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.a11y-reset {
    margin-top: 4px;
    background: var(--white);
    border-color: var(--gray-300);
}

.a11y-statement-link {
    display: block;
    padding: 14px 24px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    border-top: 1px solid var(--gray-200);
}

.a11y-statement-link:hover {
    background: var(--gray-50);
}

/* --- Accessibility state classes --- */
body.a11y-high-contrast {
    filter: contrast(1.5);
}

body.a11y-grayscale {
    filter: grayscale(1);
}

body.a11y-high-contrast.a11y-grayscale {
    filter: contrast(1.5) grayscale(1);
}

body.a11y-underline-links a {
    text-decoration: underline !important;
}

body.a11y-readable-font,
body.a11y-readable-font * {
    font-family: Arial, Helvetica, sans-serif !important;
    letter-spacing: 0.5px;
}

/* ===================================
   LEGAL / ACCESSIBILITY PAGE
   =================================== */
.legal-page {
    padding: 120px 0 80px;
    min-height: 80vh;
}

.legal-page h1 {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.legal-date {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 36px;
    margin-bottom: 12px;
}

.legal-page h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-top: 24px;
    margin-bottom: 8px;
}

.legal-page p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-page ul {
    padding-right: 24px;
    margin-bottom: 16px;
}

.legal-page li {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 6px;
}

.legal-page a {
    color: var(--primary);
    text-decoration: underline;
}

.footer-bottom a {
    color: var(--gray-500);
    text-decoration: underline;
}

.footer-bottom a:hover {
    color: var(--accent);
}
