﻿
:root {
    --primary-light: #38bdf8; 
    --primary-medium: #0ea5e9;
    --primary-dark: #0369a1; 
    --accent-gold: #FFC107; 
    --accent-gold-dark: #FFA000;
    --slate-bg: #f8fafc;
    --white: #ffffff;
    --dark-text: #1a202c;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -4px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Poppins', 'Cairo', sans-serif;
    background-color: var(--slate-bg);
    color: var(--dark-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #e0f7fa;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-medium);
    border-radius: 5px;
    border: 2px solid #e0f7fa;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--primary-dark);
    }

.font-cairo {
    font-family: 'Cairo', sans-serif;
}

.section-bg-pattern {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230ea5e9' fill-opacity='0.04'%3E%3Cpath d='M36 34.094c-2.294-1.654-4.262-2.48-5.9-2.48-1.639 0-3.277.827-4.916 2.48-2.294 1.653-5.294 2.48-8.99 2.48-3.695 0-6.695-.827-8.99-2.48C5.01 32.44 2.01 31.614 0 31.614v-2.04c2.01 0 5.01.826 7.194 2.48 2.295 1.653 4.262 2.48 5.9 2.48 1.638 0 3.277-.827 4.916-2.48 2.294-1.654 5.294-2.48 8.99-2.48s6.696.826 8.99 2.48c1.639 1.653 3.277 2.48 4.916 2.48 1.638 0 3.606-.827 5.9-2.48C54.99 29.575 57.99 28.749 60 28.749v2.04c-2.01 0-5.01.826-7.194 2.48-2.295 1.653-4.262 2.48-5.9 2.48-1.638 0-3.277-.827-4.916-2.48zM36 14.094c-2.294-1.654-4.262-2.48-5.9-2.48-1.639 0-3.277.827-4.916 2.48-2.294 1.653-5.294 2.48-8.99 2.48-3.695 0-6.695-.827-8.99-2.48C5.01 12.44 2.01 11.614 0 11.614v-2.04c2.01 0 5.01.826 7.194 2.48 2.295 1.653 4.262 2.48 5.9 2.48 1.638 0 3.277-.827 4.916-2.48 2.294-1.654 5.294-2.48 8.99-2.48s6.696.826 8.99 2.48c1.639 1.653 3.277 2.48 4.916 2.48 1.638 0 3.606-.827 5.9-2.48C54.99 9.575 57.99 8.749 60 8.749v2.04c-2.01 0-5.01.826-7.194 2.48-2.295 1.653-4.262 2.48-5.9 2.48-1.638 0-3.277-.827-4.916-2.48z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

#navbar {
    transition: background-color 0.4s ease-out, box-shadow 0.4s ease-out, padding 0.4s ease-out;
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
    padding-bottom: 4px;
    letter-spacing: 0.5px;
    font-weight: 600;
}

    .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        background-color: var(--accent-gold);
        transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .nav-link:hover, .nav-link.active {
        color: var(--primary-light) !important;
    }

.nav-scrolled .nav-link:hover, .nav-scrolled .nav-link.active {
    color: var(--accent-gold) !important;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-scrolled {
    background-color: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

    .nav-scrolled .nav-link,
    .nav-scrolled .brand-text {
        color: var(--primary-dark) !important;
    }

        .nav-scrolled .brand-text i,
        .nav-scrolled .brand-text span {
            color: var(--primary-medium) !important;
        }

    .nav-scrolled .mobile-menu-button i {
        color: var(--primary-dark) !important;
    }

.lang-flag {
    border-radius: 4px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
}

    .lang-flag:hover {
        transform: scale(1.1);
        opacity: 1;
    }

    .lang-flag.active {
        opacity: 1;
        border-color: var(--accent-gold);
        box-shadow: 0 0 10px rgba(255, 193, 7, 0.7);
    }

.mobile-menu-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(3, 105, 161, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    visibility: hidden;
}

    .mobile-menu-container.is-open {
        opacity: 1;
        transform: translateX(0);
        visibility: visible;
    }

[dir="rtl"] .mobile-menu-container {
    transform: translateX(-100%);
}

    [dir="rtl"] .mobile-menu-container.is-open {
        transform: translateX(0);
    }

.hero-section {
    background: linear-gradient(to bottom, rgba(2, 44, 67, 0.7), rgba(14, 165, 233, 0.5)), url('/images/cover.jpg') no-repeat center center/cover;
    position: relative;
    overflow: hidden;
}

.hero-title {
    animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

@keyframes text-focus-in {
    0% {
        filter: blur(12px);
        opacity: 0;
        transform: scale(1.1);
    }

    100% {
        filter: blur(0px);
        opacity: 1;
        transform: scale(1);
    }
}

.waves {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 15vh;
    min-height: 100px;
    max-height: 150px;
}

.parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}

    .parallax > use:nth-child(1) {
        animation-delay: -2s;
        animation-duration: 7s;
    }

    .parallax > use:nth-child(2) {
        animation-delay: -3s;
        animation-duration: 10s;
    }

    .parallax > use:nth-child(3) {
        animation-delay: -4s;
        animation-duration: 13s;
    }

    .parallax > use:nth-child(4) {
        animation-delay: -5s;
        animation-duration: 20s;
    }

@keyframes move-forever {
    0% {
        transform: translate3d(-90px,0,0);
    }

    100% {
        transform: translate3d(85px,0,0);
    }
}

.section-heading {
    font-family: 'Cairo', 'Poppins', sans-serif;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-medium));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -1px;
}

.section-heading-light {
    font-family: 'Cairo', 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.btn-wave {
    display: inline-block;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary-dark);
    background: linear-gradient(45deg, var(--accent-gold-dark), var(--accent-gold));
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 160, 0, 0.3);
}

    .btn-wave:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(255, 160, 0, 0.4);
    }
    .btn-wave:active {
        transform: translateY(-2px);
        box-shadow: 0 5px 10px rgba(255, 160, 0, 0.4);
    }

    .btn-wave span {
        position: relative;
        z-index: 1;
    }

    .btn-wave::before {
        content: '';
        position: absolute;
        top: 0;
        left: -50px;
        width: 0;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.3);
        transform: skewX(-25deg);
        transition: width 0.7s ease;
    }

    .btn-wave:hover::before {
        width: 200%;
    }


.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.feature-icon {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-medium));
    color: white;
    min-width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(56, 189, 248, 0.4);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(-10deg);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-dark);
}

.service-card {
    padding: 2.5rem 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 1.5rem;
    transition: all 0.3s ease;
    background-color: white;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

    .service-card::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, rgba(56, 189, 248, 0) 70%);
        transition: opacity 0.5s ease;
        opacity: 0;
        transform: scale(0);
    }

    .service-card:hover::before {
        opacity: 1;
        transform: scale(1);
    }

    .service-card:hover {
        transform: translateY(-12px);
        border-color: var(--primary-light);
        box-shadow: var(--shadow-lg);
    }

.service-icon {
    background: linear-gradient(45deg, var(--primary-medium), var(--primary-light));
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.2);
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(15deg);
    background: linear-gradient(45deg, var(--accent-gold-dark), var(--accent-gold));
    box-shadow: 0 10px 20px rgba(255, 160, 0, 0.4);
}

.testimonial-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    border-left: 5px solid var(--primary-light);
    box-shadow: var(--shadow-md); 
    position: relative;
    transition: all 0.3s ease;
}

    .testimonial-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: var(--shadow-lg); 
        border-left-color: var(--accent-gold);
    }

.testimonial-quote {
    color: var(--accent-gold);
    font-size: 3rem;
    opacity: 0.5;
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 0;
    line-height: 1;
}

.testimonial-form-wrapper {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--primary-medium);
}

.form-input-testimonial {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid #d1d5db;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #f9fafb;
}

    .form-input-testimonial:focus {
        outline: none;
        border-color: var(--primary-medium);
        box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.5);
    }


.trip-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

    .trip-card .image-container {
        position: relative;
        width: 100%;
        aspect-ratio: 1 / 1; 
        border-radius: 1.25rem;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(3, 105, 161, 0.2);
        transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .trip-card:hover .image-container {
        transform: translateY(-10px);
        box-shadow: 0 25px 55px rgba(3, 105, 161, 0.3);
    }

    .trip-card .card-image {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        transition: transform 0.8s ease;
    }

    .trip-card:hover .card-image {
        transform: scale(1.1);
    }

    .trip-card .hover-content {
        position: absolute;
        inset: 0;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 2rem;
        color: #f8fafc;
        background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(255, 160, 0, 0.3) 100%);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        opacity: 0;
        clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
        transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .trip-card:hover .hover-content {
        opacity: 1;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .trip-card .hover-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        text-shadow: 0 1px 4px rgba(0,0,0,0.5);
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        display: -webkit-box;
        overflow: hidden;
        text-overflow: ellipsis;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.4s ease 0.3s, transform 0.4s ease 0.3s;
    }

    .trip-card:hover .hover-content p {
        opacity: 1;
        transform: translateY(0);
    }

.btn-trip {
    display: inline-block;
    background: linear-gradient(45deg, #FFA000, #FFC107);
    border: none;
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(255, 160, 0, 0.4);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease, opacity 0.4s ease 0.4s, transform 0.4s ease 0.4s;
}

.trip-card:hover .btn-trip {
    opacity: 1;
    transform: translateY(0);
}

.btn-trip:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.5);
}

.trip-card .static-title {
    margin-top: 1.5rem;
    text-align: center;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.trip-card:hover .static-title {
    transform: translateY(-10px);
}

.trip-card .static-title h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0369a1;
    position: relative;
    display: inline-block;
}

    .trip-card .static-title h3::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #FFC107;
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.4s ease;
    }

.trip-card:hover .static-title h3::after {
    transform: scaleX(1);
}



@keyframes kenburns-ltr {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.1) translate(-2%, 2%);
    }
}

@keyframes kenburns-rtl {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.1) translate(2%, 2%);
    }
}


@keyframes contentFadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#gallery {
    position: relative;
    background: linear-gradient(45deg, #e0f7fa, #bae6fd);
    padding-bottom: 25rem;
}

.gallery-container {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 600px;
    max-height: 800px;
    margin: 0 auto;
    perspective: 1500px;
    transform-style: preserve-3d;
}

.scattered-photos {
    position: relative;
    width: 100%;
    height: 100%;
}

.photo-card {
    position: absolute;
    padding: 8px;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1), 0 10px 30px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.05);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: auto;
}

    .photo-card img {
        width: 100%;
        height: auto;
        display: block;
        user-select: none;
        pointer-events: none;
    }

    .photo-card:hover {
        transform: scale(1.1) translateZ(50px) !important;
        z-index: 100 !important;
    }

    .photo-card.is-active {
        transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 101 !important;
    }

#gallery-overlay.active {
    opacity: 0.8;
    pointer-events: auto;
}

.contact-section {
    position: relative;
    overflow: hidden;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/8.JPG') no-repeat center center/cover;
    background-attachment: fixed;
    z-index: 1;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(3, 80, 128, 0.95), rgba(14, 130, 200, 0.9));
    z-index: 2;
}

.contact-section .container {
    position: relative;
    z-index: 3;
}

.contact-info-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

    .contact-info-link:hover {
        color: var(--accent-gold);
    }

.contact-icon {
    color: var(--primary-light);
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
    transition: transform 0.3s ease, color 0.3s ease;
}

.contact-info-link:hover .contact-icon {
    color: var(--accent-gold);
    transform: scale(1.2);
}

.contact-form-wrapper {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 1rem;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

    .contact-form-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: -1;
        margin: -1px;
        border-radius: inherit;
        background: linear-gradient(135deg, var(--primary-light), var(--accent-gold));
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    .contact-form-wrapper:hover::before {
        opacity: 0.15;
    }

.input-group {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(0, 0, 0, 0.25);
    color: white;
    transition: all 0.3s ease;
}

    .form-input:focus {
        outline: none;
        border-color: var(--primary-light);
        background-color: rgba(0, 0, 0, 0.3);
        box-shadow: 0 0 15px rgba(56, 189, 248, 0.5);
    }

.form-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: rgba(255, 255, 255, 0.6);
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-input:focus + .form-label,
.form-input:valid + .form-label {
    top: -0.75rem;
    left: 0.75rem;
    font-size: 0.8rem;
    background-color: var(--primary-dark);
    padding: 0 0.25rem;
    color: var(--accent-gold);
    border-radius: 4px;
}

[dir="rtl"] .form-label {
    left: auto;
    right: 1rem;
}

[dir="rtl"] .form-input:focus + .form-label,
[dir="rtl"] .form-input:valid + .form-label {
    right: 0.75rem;
    left: auto;
}


.site-footer {
    position: relative;
    background: #021024;
    color: #e0f7fa;
    padding-top: 0;
    overflow: hidden;
}

.footer-waves-container {
    position: relative;
    width: 100%;
    height: 150px;
    background: var(--slate-bg);
}

.footer-waves {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100%;
}

.footer-parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}

    .footer-parallax > use:nth-child(1) {
        fill: rgba(3, 105, 161, 0.7);
        animation-delay: -2s;
        animation-duration: 7s;
    }

    .footer-parallax > use:nth-child(2) {
        fill: rgba(3, 105, 161, 0.5);
        animation-delay: -3s;
        animation-duration: 10s;
    }

    .footer-parallax > use:nth-child(3) {
        fill: rgba(3, 105, 161, 0.3);
        animation-delay: -4s;
        animation-duration: 13s;
    }

    .footer-parallax > use:nth-child(4) {
        fill: #021024;
        animation-delay: -5s;
        animation-duration: 20s;
    }

.footer-brand {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-col {
    z-index: 10;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

    .footer-heading::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0px;
        height: 3px;
        background-color: var(--accent-gold);
        transition: width 0.4s ease;
    }

.footer-col:hover .footer-heading::after {
    width: 40px;
}

[dir="rtl"] .footer-heading::after {
    left: auto;
    right: 0;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: #b2ebf2;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .footer-link::before {
        content: '\f105';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        opacity: 0;
        transform: translateX(-5px);
        transition: all 0.3s ease;
    }

    .footer-link:hover {
        color: var(--accent-gold);
        transform: translateX(5px);
    }



        .footer-link:hover::before {
            opacity: 1;
            transform: translateX(0);
        }

[dir="rtl"] .footer-link {
    justify-content: flex-start;
}

    [dir="rtl"] .footer-link::before {
        content: '\f104';
        order: 2;
        transform: translateX(5px);
    }

    [dir="rtl"] .footer-link:hover {
        transform: translateX(-5px);
    }

        [dir="rtl"] .footer-link:hover::before {
            transform: translateX(0);
        }

.social-icon-footer {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

    .social-icon-footer:hover {
        background-color: var(--accent-gold);
        border-color: var(--accent-gold);
        transform: translateY(-5px) scale(1.1);
        color: var(--primary-dark);
    }


#scrollToTopBtn {
    background: linear-gradient(45deg, #19abed, #021024);
    animation: pulse-glow 2.5s infinite ease-in-out;
}

@keyframes pulse-glow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(25, 171, 237, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(25, 171, 237, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(25, 171, 237, 0);
    }
}

#whatsapp-fab {
    background: linear-gradient(45deg, #25D366, #128C7E);
    animation: pulse-glow 2.5s infinite ease-in-out;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
@media(max-width:1060px) {
    .gallery-container {
        width: 80%;
    }

    #navbar {
        width: 100%;
        padding: 10px 50px;
    }
}