
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #866d4b;
    --secondary-color: #6f5a3d;
    --accent-color: #a48866;
    --light-bg: #f4f2ef;
    --card-bg: #f9f8f6;
    --text-dark: #333;
    --text-light: #555;
    --text-lighter: #666;
    --white: #ffffff;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.15);
    --shadow-xl: 0 12px 40px rgba(0,0,0,0.2);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body{

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700&display=swap');

    font-family: 'Cairo', 'Segoe UI', Tahoma, sans-serif;  background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
/* ////////////////////////////////////// */


/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(134, 109, 75, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 2px solid rgba(134, 109, 75, 0.15);
    padding: 0.8rem 2rem;
    transform: translateY(0);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(134, 109, 75, 0.2);
    padding: 0.5rem 2rem;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 1px;
    transition: all var(--transition-normal);
    position: relative;
    display: flex;
    align-items: center;
}

.logo img {
    transition: all var(--transition-normal);
    filter: drop-shadow(0 2px 8px rgba(134, 109, 75, 0.2));
}

.logo:hover img {
    transform: scale(1.05) translateY(-2px);
    filter: drop-shadow(0 4px 12px rgba(134, 109, 75, 0.35));
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all var(--transition-normal);
    white-space: nowrap;
    position: relative;
    padding: 0.5rem 0;
    display: inline-block;
    letter-spacing: 0.3px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(134, 109, 75, 0.05), rgba(164, 136, 102, 0.05));
    opacity: 0;
    transition: all var(--transition-normal);
    border-radius: 8px;
    z-index: -1;
}

.nav-links a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a:hover::after {
    opacity: 1;
}

.nav-links a:active {
    transform: translateY(-1px);
}

.nav-links a.active {
    color: var(--accent-color);
}

.nav-links a.active::before {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(134, 109, 75, 0.3);
    align-items: center;
    justify-content: center;
}

.menu-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(134, 109, 75, 0.4);
}

.menu-toggle:active {
    transform: scale(0.95);
}

.menu-toggle.active {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    transform: rotate(90deg);
}

/* Responsive Design - Mobile */
@media screen and (max-width: 768px) {
    .navbar {
        padding: 0.8rem 1rem;
    }

    .navbar-container {
        gap: 1rem;
    }

    .menu-toggle {
        display: flex;
        order: 2;
    }

    .logo {
        order: 1;
        font-size: 1.5rem;
    }

    .logo img {
        height: 40px;
        width: auto;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        padding: 2rem 0;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        order: 3;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 90%;
        text-align: center;
        border-bottom: 1px solid rgba(134, 109, 75, 0.1);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        transition: all var(--transition-normal);
    }

    .nav-links a::before {
        display: none;
    }

    .nav-links a::after {
        border-radius: 0;
    }

    .nav-links a:hover {
        background: linear-gradient(135deg, rgba(134, 109, 75, 0.08), rgba(164, 136, 102, 0.08));
        transform: translateX(-5px);
    }

    .nav-links a.active {
        background: linear-gradient(135deg, rgba(134, 109, 75, 0.12), rgba(164, 136, 102, 0.12));
    }
}

@media screen and (max-width: 480px) {
    .navbar {
        padding: 0.6rem 0.8rem;
    }

    .logo img {
        height: 35px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }

    .nav-links {
        top: 60px;
        height: calc(100vh - 60px);
        padding: 1.5rem 0;
    }

    .nav-links a {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}
/* //////////////////////////////////////////////////////////// */

/* Hero Section - Enhanced Modern Business Design */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
    animation: kenBurns 20s ease-in-out infinite alternate;
    transform-origin: center;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(134, 109, 75, 0.75) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(134, 109, 75, 0.8) 100%
    );
    z-index: -1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(134, 109, 75, 0.4), transparent 40%),
        radial-gradient(circle at 80% 30%, rgba(164, 136, 102, 0.3), transparent 40%);
    pointer-events: none;
    z-index: 0;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

/* Animated Particles */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 2s;
    animation-duration: 15s;
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
    animation-duration: 18s;
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 6s;
    animation-duration: 14s;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 8s;
    animation-duration: 16s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* Hero Content */
.hero-content {
    max-width: 1000px;
    padding: 2rem;
    animation: fadeInUp 1.2s ease;
    position: relative;
    z-index: 1;
}

/* Premium Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease 0.3s both;
}

.badge-icon {
    font-size: 1.2rem;
    animation: rotate 3s ease-in-out infinite;
}

@keyframes rotate {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(10deg);
    }
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Hero Title */
.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
    animation: fadeInUp 1s ease 0.5s both;
}

.title-line {
    display: block;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.6);
    opacity: 0.95;
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, #f4f2ef 0%, #a48866 50%, #f4f2ef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(2px 2px 15px rgba(0,0,0,0.5));
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Hero Description */
.hero-description {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 10px rgba(0,0,0,0.6);
    color: #f4f2ef;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.7s both;
}

.description-accent {
    display: block;
    font-size: 1.1rem;
    margin-top: 0.5rem;
    color: #d4b896;
    font-weight: 500;
}

/* CTA Buttons Group */
.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.9s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.cta-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    box-shadow: 0 8px 30px rgba(134, 109, 75, 0.4);
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(134, 109, 75, 0.6);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.cta-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-icon {
    transform: translateX(5px);
}

/* Trust Indicators */
.hero-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease 1.1s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.trust-text {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.trust-text strong {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f4f2ef;
    margin-bottom: 0.2rem;
}

.trust-text span {
    font-size: 0.85rem;
    color: #d4b896;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeInUp 1s ease 1.5s both;
    z-index: 1;
}

.scroll-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    letter-spacing: 1px;
}

.scroll-arrow {
    font-size: 1.5rem;
    color: white;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* Section Styling */
section {
    padding: 5rem 5%;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    color: #866d4b;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 3px;
    background-color: #866d4b;
}

/* Hero Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .title-line {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .hero-trust-indicators {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 600px;
        height: 100vh;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .hero-badge {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .title-line {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .description-accent {
        font-size: 1rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-trust-indicators {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .trust-item {
        justify-content: center;
    }
    
    .trust-icon {
        font-size: 2rem;
    }
    
    .trust-text strong {
        font-size: 1rem;
    }
    
    .trust-text span {
        font-size: 0.8rem;
    }
    
    .hero-scroll-indicator {
        bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 550px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .title-line {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-badge {
        padding: 0.4rem 1rem;
    }
    
    .badge-icon {
        font-size: 1rem;
    }
    
    .badge-text {
        font-size: 0.8rem;
    }
    
    .cta-button {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-trust-indicators {
        padding: 1rem;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Accessibility - Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .hero-background-image,
    .particle,
    .hero::before,
    .badge-icon {
        animation: none;
    }
    
    .hero-content,
    .hero-badge,
    .hero-title,
    .hero-description,
    .hero-cta-group,
    .hero-trust-indicators,
    .hero-scroll-indicator {
        animation: fadeIn 0.5s ease;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* //////////////////////////////////////////////////////////// */



/* Destinations Section */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.destination-card {
    background: #f9f8f6;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.destination-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.destination-content {
    padding: 1.8rem;
}

.destination-title {
    font-size: 1.5rem;
    color: #866d4b;
    margin-bottom: 1rem;
    font-weight: bold;
}

.destination-info {
    margin-bottom: 1rem;
    color: #555;
}

.destination-info p {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.destination-info strong {
    color: #866d4b;
    min-width: 90px;
}

.stations {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
}

.detail-button {
    display: inline-block;
    background-color: #866d4b;
    color: white;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.detail-button:hover {
    background-color: #6f5a3d;
}


/* //////////////////////////////////////////////////////////// */

/* Ships Section */
.ship {
    margin-bottom: 5rem;
    background: #f9f8f6;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.ship-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
    align-items: center;
}

.ship-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.ship-description h3 {
    font-size: 2rem;
    color: #866d4b;
    margin-bottom: 1rem;
}

.ship-description p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.ship-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    padding: 0 2rem 2rem;
}

.gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-image:hover {
    transform: scale(1.05);
}

.ship-journeys {
    padding: 2rem;
    background: white;
}

.ship-journeys h4 {
    color: #866d4b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.journey-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.journey-item {
    background: #f9f8f6;
    padding: 1rem;
    border-radius: 8px;
    border-right: 4px solid #866d4b;
}

.journey-item a {
    color: #866d4b;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.journey-item a:hover {
    opacity: 0.7;
}

/* ============================================
   FIND JOURNEY SECTION - Enhanced Modern Design
   ============================================ */

#find-journey {
    background: linear-gradient(135deg, 
        rgba(134, 109, 75, 0.03) 0%, 
        rgba(164, 136, 102, 0.08) 50%,
        rgba(134, 109, 75, 0.03) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

/* Decorative background elements */
#find-journey::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(134, 109, 75, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatSlow 25s ease-in-out infinite;
}

#find-journey::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(164, 136, 102, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatSlow 30s ease-in-out infinite reverse;
}

@keyframes floatSlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, 50px) scale(1.1); }
}

.journey-placeholder {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.journey-placeholder h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(134, 109, 75, 0.1);
}

.journey-placeholder h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--accent-color), 
        var(--primary-color), 
        var(--accent-color), 
        transparent);
    border-radius: 2px;
}

/* Enhanced search form container */
.journey-placeholder .tab-content {
    background: white;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.12),
        0 8px 25px rgba(134, 109, 75, 0.15),
        inset 0 1px 0 rgba(255,255,255,0.8);
    border: 1px solid rgba(134, 109, 75, 0.1);
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.journey-placeholder .tab-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--primary-color), 
        var(--accent-color), 
        var(--primary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.journey-placeholder .tab-content:hover::before {
    opacity: 1;
}

.journey-placeholder .tab-content:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 30px 80px rgba(0,0,0,0.15),
        0 15px 40px rgba(134, 109, 75, 0.2),
        inset 0 1px 0 rgba(255,255,255,0.8);
}

/* Tab pane styling */
.journey-placeholder .tab-pane {
    padding: 0 !important;
}

/* Add subtle icon or decoration before heading */
.journey-placeholder h2::before {
    content: '⚓';
    display: block;
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.3;
    animation: anchorSway 3s ease-in-out infinite;
}

@keyframes anchorSway {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    #find-journey {
        padding: 3rem 0;
    }

    .journey-placeholder h2 {
        font-size: 2rem;
    }

    .journey-placeholder h2::before {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .journey-placeholder .tab-content {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
        border-radius: 15px;
    }

    .journey-placeholder {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .journey-placeholder h2 {
        font-size: 1.6rem;
    }

    .journey-placeholder .tab-content {
        padding: 1.5rem 1rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    #find-journey::before,
    #find-journey::after,
    .journey-placeholder h2::before {
        animation: none !important;
    }

    .journey-placeholder .tab-content {
        transition: none !important;
    }
}

/* ============================================
   FAQ SECTION - Enhanced Modern Design
   ============================================ */

#faq {
    background: linear-gradient(180deg, 
        var(--white) 0%, 
        var(--light-bg) 50%,
        var(--white) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

/* Decorative background */
#faq::before {
    content: '?';
    position: absolute;
    top: 10%;
    right: 5%;
    font-size: 20rem;
    font-weight: 900;
    color: rgba(134, 109, 75, 0.02);
    pointer-events: none;
    font-family: 'Cairo', sans-serif;
}

#faq .section-title {
    position: relative;
    z-index: 1;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: white;
    margin-bottom: 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0,0,0,0.06),
        0 2px 8px rgba(134, 109, 75, 0.08);
    border: 1px solid rgba(134, 109, 75, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    transition: height 0.4s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 35px rgba(0,0,0,0.1),
        0 6px 20px rgba(134, 109, 75, 0.15);
    border-color: rgba(134, 109, 75, 0.15);
}

.faq-item:hover::before {
    height: 100%;
}

.faq-item.active {
    background: linear-gradient(135deg, 
        rgba(255,255,255,1) 0%, 
        rgba(249,248,246,0.5) 100%);
    box-shadow: 
        0 8px 30px rgba(0,0,0,0.12),
        0 4px 15px rgba(134, 109, 75, 0.2);
    border-color: rgba(134, 109, 75, 0.2);
}

.faq-item.active::before {
    height: 100%;
}

.faq-question {
    width: 100%;
    padding: 1.8rem 2rem;
    background: none;
    border: none;
    text-align: right;
    font-size: 1.15rem;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Cairo', sans-serif;
}

.faq-question:hover {
    background-color: #f4f2ef;
}

.faq-icon {
    font-size: 1.3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        rgba(134, 109, 75, 0.1), 
        rgba(164, 136, 102, 0.15));
    color: var(--primary-color);
    font-weight: 700;
}

.faq-item:hover .faq-icon {
    background: linear-gradient(135deg, 
        rgba(134, 109, 75, 0.15), 
        rgba(164, 136, 102, 0.2));
    transform: scale(1.1);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg) scale(1.1);
    background: linear-gradient(135deg, 
        var(--primary-color), 
        var(--accent-color));
    color: white;
    box-shadow: 0 4px 12px rgba(134, 109, 75, 0.3);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                padding 0.5s ease,
                opacity 0.3s ease;
    padding: 0 2rem;
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.05rem;
    opacity: 0;
    background: linear-gradient(180deg, 
        rgba(134, 109, 75, 0.02) 0%, 
        transparent 100%);
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 0 2rem 2rem;
    opacity: 1;
    animation: fadeInAnswer 0.5s ease forwards;
}

@keyframes fadeInAnswer {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add decorative number badges */
.faq-item {
    counter-increment: faq-counter;
}



.faq-container {
    counter-reset: faq-counter;
}



/* Responsive Design */
@media (max-width: 768px) {
    #faq {
        padding: 3rem 0;
    }

    #faq::before {
        font-size: 12rem;
        right: -5%;
    }

    .faq-container {
        padding: 0 1rem;
    }

    .faq-question {
        padding: 1.5rem 1.5rem;
        font-size: 1.05rem;
    }

    .faq-question:hover {
        padding-right: 1.5rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
    color: #555;
    line-height: 1.8;
    }

    .faq-item.active .faq-answer {
    max-height: 500px;
        padding: 0 1.5rem 1.5rem;
    }
}
/* ============================================
   FOOTER SECTION - Enhanced Modern Design
   ============================================ */

footer {
    background: linear-gradient(180deg, 
        var(--light-bg) 0%,
        rgba(244, 242, 239, 0.5) 50%,
        var(--white) 100%);
    padding: 5rem 5% 2rem;
    position: relative;
    overflow: hidden;
    border-top: 4px solid transparent;
    border-image: linear-gradient(90deg, 
        transparent,
        var(--primary-color) 20%,
        var(--accent-color) 50%,
        var(--primary-color) 80%,
        transparent) 1;
}

/* Decorative background wave */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(ellipse at top, 
        rgba(134, 109, 75, 0.05) 0%,
        transparent 70%);
    pointer-events: none;
}

/* Decorative anchor pattern */
footer::after {
    content: '⚓';
    position: absolute;
    bottom: 10%;
    right: 5%;
    font-size: 15rem;
    color: rgba(134, 109, 75, 0.02);
    pointer-events: none;
    transform: rotate(-15deg);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3.5rem;
    position: relative;
    z-index: 1;
}

.footer-section {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.footer-section:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-section:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-section:nth-child(3) {
    animation-delay: 0.3s;
}

.footer-section:nth-child(4) {
    animation-delay: 0.4s;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.8rem;
    font-size: 1.4rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
    padding-bottom: 0.8rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--primary-color), 
        var(--accent-color), 
        transparent);
    border-radius: 2px;
}

/* Footer Logos Section */
.footer-logos {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
}

.footer-logo {
    transition: all 0.3s ease;
    filter: grayscale(0.2);
}

.footer-logo:hover {
    filter: grayscale(0) brightness(1.1);
    transform: scale(1.05);
}

.footer-logos > p {
    color: var(--text-light) !important;
    font-size: 1rem !important;
    line-height: 1.8 !important;
    margin-top: 0.5rem !important;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    border-left: 3px solid var(--accent-color);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
    position: relative;
    padding-right: 1.5rem;
}

.footer-links li::before {
    content: '→';
    position: absolute;
    right: 0;
    color: var(--accent-color);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links li:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    display: inline-block;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--primary-color), 
        var(--accent-color));
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(-5px);
}

.footer-links a:hover::after {
    width: 100%;
}

/* Footer Contact Section */
.footer-title {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}



.footer-contact-item {
    text-align: right;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    transition: all var(--transition-normal);
    padding: 10px;
    border-radius: 8px;
}

.footer-contact-item:hover {
    background: rgba(134, 109, 75, 0.05);
    transform: translateX(-5px);
}

.footer-contact-icon {
    margin-left: 15px;
    color: white;
    font-size: 1.2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 12px rgba(134, 109, 75, 0.3);
    flex-shrink: 0;
}

.footer-contact-item:hover .footer-contact-icon {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 6px 18px rgba(134, 109, 75, 0.5);
}

.footer-contact-item p {
    margin: 0;
    color: var(--text-lighter);
    line-height: 1.6;
    flex: 1;
}

.footer-contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all var(--transition-normal);
    font-weight: 500;
}

.footer-contact-item a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Specific icon colors on hover */
.footer-contact-item:hover .footer-contact-icon i.fa-map-marker-alt {
    animation: bounce 0.6s ease;
}

.footer-contact-item:hover .footer-contact-icon i.fa-phone-alt {
    animation: shake 0.6s ease;
}

.footer-contact-item:hover .footer-contact-icon i.fa-envelope {
    animation: pulse 0.6s ease;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    font-size: 1.2rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(134, 109, 75, 0.3);
    text-decoration: none;
}

.social-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    transform: scale(0);
    transition: transform var(--transition-normal);
    border-radius: 50%;
    z-index: 0;
}

.social-icon i {
    position: relative;
    z-index: 1;
    transition: all var(--transition-normal);
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(134, 109, 75, 0.5);
}

.social-icon:hover::before {
    transform: scale(1);
}

/* Individual Social Media Colors */
.social-icon[aria-label="Instagram"]:hover {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon[aria-label="Snapchat"]:hover {
    background: #FFFC00;
    color: #000;
}

.social-icon[aria-label="Telegram"]:hover {
    background: #0088cc;
}

.social-icon[aria-label="WhatsApp"]:hover {
    background: #25D366;
}

.social-icon[aria-label="X (formerly Twitter)"]:hover,
.social-icon[aria-label="Twitter"]:hover {
    background: #000000;
}

.social-icon:active {
    transform: translateY(-2px) scale(1.05);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem 1.2rem;
    border: 2px solid rgba(134, 109, 75, 0.15);
    border-radius: 12px;
    font-family: 'Cairo', inherit;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(134, 109, 75, 0.1);
    transform: translateY(-2px);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    background: linear-gradient(135deg, 
        var(--primary-color), 
        var(--accent-color));
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 20px rgba(134, 109, 75, 0.25),
        inset 0 1px 0 rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.contact-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255,255,255,0.3), 
        transparent);
    transition: left 0.6s;
}

.contact-form button:hover::before {
    left: 100%;
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 30px rgba(134, 109, 75, 0.35),
        inset 0 1px 0 rgba(255,255,255,0.3);
}

.contact-form button:active {
    transform: translateY(-1px);
    box-shadow: 
        0 6px 15px rgba(134, 109, 75, 0.3),
        inset 0 1px 0 rgba(255,255,255,0.2);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(134, 109, 75, 0.1);
    color: var(--text-lighter);
    position: relative;
    z-index: 1;
}

.footer-bottom picture {
    display: inline-block;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.footer-bottom picture:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.footer-bottom p {
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-light);
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.footer-bottom a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--accent-color);
}

.footer-bottom a:hover::after {
    width: 100%;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    footer {
        padding: 4rem 4% 2rem;
    }

    .footer-content {
        gap: 3rem;
    }

    footer::after {
        font-size: 12rem;
        bottom: 5%;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 3rem 5% 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-section h3 {
        font-size: 1.25rem;
    }

    footer::after {
        font-size: 8rem;
        opacity: 0.5;
    }

    .footer-bottom {
        margin-top: 3rem;
        padding-top: 2rem;
    }

    .footer-bottom p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 2.5rem 1rem 1rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-section h3 {
        font-size: 1.15rem;
        margin-bottom: 1.2rem;
    }

    .social-links {
        justify-content: center;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
    }

    .contact-form button {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }

    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }

    footer::after {
        display: none;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 1.5rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        width: 100%;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: 0 10px 40px rgba(134, 109, 75, 0.15);
        padding: 2rem 0;
        gap: 0;
        border-top: 2px solid rgba(134, 109, 75, 0.15);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
        opacity: 0;
        transform: translateX(-20px);
        animation: slideIn 0.4s forwards;
    }

    .nav-links.active li:nth-child(1) {
        animation-delay: 0.1s;
    }

    .nav-links.active li:nth-child(2) {
        animation-delay: 0.2s;
    }

    .nav-links.active li:nth-child(3) {
        animation-delay: 0.3s;
    }

    .nav-links.active li:nth-child(4) {
        animation-delay: 0.4s;
    }

    .nav-links a {
        display: block;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(134, 109, 75, 0.08);
    }

    .nav-links a::before {
        bottom: 10px;
    }

    @keyframes slideIn {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .ship-main {
        grid-template-columns: 1fr;
    }

    section {
        padding: 3rem 5%;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
    }
}
