/* HURGHADA EXCURSIONS - PROFESSIONAL TOURISM STYLES */

/* Layout fixes */
/* Layout fixes */
/* Layout fixes */
/* Layout fixes */
body {
    padding-top: 50px;
}

header.header {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(2, 16, 36, 0.8);
    /* Premium dark glass */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    body {
        padding-top: 0;
    }

    .promo-banner {
        position: relative;
        top: 0;
        z-index: 1001;
    }

    header.header {
        position: fixed;
        top: 0;
        padding: 10px 0;
        background: rgba(2, 16, 36, 0.9);
        /* More opaque for better readability */
        height: 60px;
        /* Fixed sleek height */
        display: flex;
        align-items: center;
    }

    /* Refined Mobile Header Content */
    header.header .header-content {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
        /* Proper breathing room */
    }

    /* Smaller, cleaner Logo */
    header.header .logo {
        gap: 6px;
        font-size: 1.15rem;
        /* Prevent excessive width */
    }

    header.header .logo svg {
        width: 35px;
        height: 35px;
    }

    /* Clean Mobile Menu Button */
    .mobile-menu-btn {
        margin-left: auto;
    }

    .hero {
        margin-top: 60px;
    }
}

.hero {
    margin-top: 70px;
}

/* PROMO BANNER */
.promo-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    background: linear-gradient(90deg, #ff6b6b 0%, #ffd93d 100%);
    color: #0a1628;
    font-weight: 600;
}

.promo-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.promo-banner i {
    width: 20px;
    height: 20px;
}

.promo-btn {
    background: #0a1628;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-left: 16px;
}

.promo-btn:hover {
    background: #1a365d;
    transform: scale(1.05);
}

.promo-close {
    position: absolute;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.7;
}

.promo-close:hover {
    opacity: 1;
}

/* SECTION LABELS */
.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(78, 205, 196, 0.1);
    color: var(--accent-turquoise);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* HERO STATS */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-turquoise);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* TRUST BADGES */
.trust-badges {
    background: var(--bg-secondary);
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.badges-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-weight: 500;
}

.badge-item i {
    width: 24px;
    height: 24px;
    color: var(--accent-turquoise);
}

/* MODAL */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    cursor: pointer;
}

.modal-content {
    position: relative;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

.modal-close:hover {
    background: var(--accent-coral);
    transform: scale(1.1);
}

.modal-close i {
    width: 20px;
    height: 20px;
    color: white;
}

/* HERO */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg .hero-image,
.hero-bg .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 22, 40, 0.4) 0%, rgba(10, 22, 40, 0.85) 100%);
}

.info-bar {
    position: relative;
    /* In flow */
    display: inline-flex;
    /* Flex to center content */
    gap: 16px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 8px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 10;
    width: auto;
    /* Let content define width */
    max-width: 90%;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    /* Space below it */
}

@media (max-width: 768px) {

    /* Info Bar - Clean Mobile Card */
    .info-bar {
        position: relative;
        top: 0;
        left: 50%;
        /* Center center */
        transform: translateX(-50%);
        margin: 85px 0 20px 0;
        /* Vertical spacing only */
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 16px;
        width: 90%;
        max-width: 350px;
        background: rgba(10, 22, 40, 0.95);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
        z-index: 2000;
    }

    /* Video Optimization */
    .hero-bg .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .hero {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .info-bar .info-item:last-child {
        grid-column: span 2;
        justify-content: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 10px;
        margin-top: 6px;
    }

    /* Hero Content - Centered & Spaced */
    .hero-content {
        text-align: center;
        padding: 0 20px;
        margin-top: 0;
    }

    .hero-title {
        font-size: clamp(2.2rem, 9vw, 3rem);
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .hero-stats {
        justify-content: center;
        gap: 20px;
        margin-bottom: 40px;
    }

    /* Buttons */
    .hero-cta {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .btn-lg {
        width: 100%;
        justify-content: center;
    }
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.info-item i {
    width: 18px;
    height: 18px;
    color: var(--accent-turquoise);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(78, 205, 196, 0.2);
    border: 1px solid rgba(78, 205, 196, 0.5);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--accent-turquoise);
    font-weight: 600;
    margin-bottom: 24px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    width: 32px;
    height: 32px;
    color: var(--accent-turquoise);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* LANGUAGE */
.lang-selector {
    display: flex;
    gap: 4px;
    background: var(--bg-glass);
    border-radius: var(--radius-full);
    padding: 4px;
}

.lang-btn {
    padding: 6px 12px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-btn img {
    width: 24px;
    height: 18px;
    object-fit: cover;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .lang-selector {
        width: 100%;
        justify-content: space-between;
        padding: 5px;
        background: rgba(255, 255, 255, 0.08);
        margin-top: 10px;
    }

    .lang-btn {
        flex: 1;
        justify-content: center;
        padding: 10px;
        font-size: 1rem;
    }

    .lang-btn img {
        width: 28px;
        height: 20px;
    }
}

.lang-btn:hover {
    color: var(--text-primary);
}

.lang-btn.active {
    background: var(--accent-turquoise);
    color: var(--bg-primary);
}

.header-cta {
    display: none;
}

@media (min-width: 768px) {
    .header-cta {
        display: flex;
    }
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--gradient-sunset);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
    animation: pulse-orange 2s infinite;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 40px rgba(255, 71, 87, 0.6);
}

@keyframes pulse-orange {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

.btn-secondary {
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* CATEGORY FILTERS */
.category-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.category-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.category-filter:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.category-filter.active {
    background: var(--accent-turquoise);
    color: var(--bg-primary);
    border-color: var(--accent-turquoise);
}

.category-filter i {
    width: 18px;
    height: 18px;
}

/* EXCURSIONS GRID */
.excursions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

/* EXCURSION CARD */
.excursion-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.excursion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-turquoise);
}

.excursion-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.excursion-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.excursion-card:hover .excursion-card-image img {
    transform: scale(1.1);
}

/* ENHANCED CARD BADGES */
.card-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 5;
}

.card-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.card-badge i {
    width: 12px;
    height: 12px;
}

.badge-bestseller {
    background: linear-gradient(135deg, #ffd700 0%, #ff9500 100%);
    color: #1a1a1a;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.badge-popular {
    background: var(--accent-coral);
    color: white;
}

.badge-sale {
    background: #ff3b3b;
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.excursion-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: var(--accent-coral);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.excursion-duration {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
}

.excursion-duration i {
    width: 14px;
    height: 14px;
}

.excursion-card-content {
    padding: 20px;
}

.excursion-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.excursion-card-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* CARD FEATURES */
.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.feature-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: #4ecdc4;
}

.feature-item i {
    width: 14px;
    height: 14px;
}

.excursion-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.excursion-rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.excursion-rating i {
    color: #ffc107;
    width: 16px;
    height: 16px;
    fill: #ffc107;
}

.excursion-rating span {
    font-weight: 600;
}

.excursion-rating small {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.excursion-price {
    text-align: right;
}

.excursion-price-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.original-price {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 2px;
}

.excursion-price-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-turquoise);
}

/* TESTIMONIALS */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-turquoise);
}

.testimonial-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-turquoise);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-author strong {
    display: block;
    color: var(--text-primary);
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
}

.faq-item {
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-turquoise);
    transform: translateY(-3px);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.faq-question i {
    width: 22px;
    height: 22px;
    color: var(--accent-turquoise);
    flex-shrink: 0;
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-answer strong {
    color: var(--accent-turquoise);
}

/* BENEFITS GRID */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.benefit-card {
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-turquoise);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 50%;
}

.benefit-icon i {
    width: 28px;
    height: 28px;
    color: var(--accent-turquoise);
}

.benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* CONTACT */
.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.contact-wrapper>p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.contact-method:hover {
    transform: translateX(5px);
    border-color: var(--accent-turquoise);
}

.contact-method.whatsapp i {
    color: #25D366;
}

.contact-method.phone i {
    color: #ff6b6b;
}

.contact-method.email i {
    color: var(--accent-turquoise);
}

.contact-method i {
    width: 28px;
    height: 28px;
}

.contact-method div {
    text-align: left;
}

.contact-method strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact-method span {
    font-size: 1.1rem;
    font-weight: 600;
}

.payment-methods h4 {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.payment-icons span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
}

.payment-icons i {
    width: 20px;
    height: 20px;
    color: var(--accent-turquoise);
}

/* DETAIL MODAL */
.detail-header {
    position: relative;
    height: 300px;
}

.detail-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-header-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.detail-header h2 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.detail-header-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--text-secondary);
}

.detail-header-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.detail-header-meta i {
    width: 18px;
    height: 18px;
    color: var(--accent-turquoise);
}

.detail-body {
    padding: 30px;
}

.detail-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.detail-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 30px;
}

.detail-section {
    background: var(--bg-glass);
    border-radius: var(--radius-md);
    padding: 20px;
}

.detail-section h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--accent-turquoise);
}

.detail-section h4 i {
    width: 20px;
    height: 20px;
}

.detail-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-section li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.detail-section li::before {
    content: '✓';
    color: var(--accent-turquoise);
    font-weight: bold;
}

/* BOOKING FORM */
.booking-form-section {
    background: rgba(78, 205, 196, 0.05);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-top: 30px;
}

.booking-form-section h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    color: var(--accent-turquoise);
}

.booking-form-section h3 i {
    width: 24px;
    height: 24px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.form-group input {
    padding: 12px 16px;
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-turquoise);
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.2);
}

.guest-counter {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 8px 16px;
}

.guest-counter button {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-turquoise);
    color: var(--bg-primary);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
}

.guest-counter button:hover {
    transform: scale(1.1);
}

.guest-counter span {
    font-size: 1.3rem;
    font-weight: 700;
    min-width: 30px;
    text-align: center;
}

.booking-summary {
    background: var(--bg-glass);
    border-radius: var(--radius-md);
    padding: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.summary-row.total {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-turquoise);
}

.booking-actions {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.btn-paypal {
    flex: 1;
    background: #0070ba;
    color: white;
    padding: 16px 24px;
}

.btn-paypal:hover {
    background: #005ea6;
    transform: translateY(-2px);
}

.btn-whatsapp {
    flex: 1;
    background: #25D366;
    color: white;
    padding: 16px 24px;
}

.btn-whatsapp:hover {
    background: #1ea952;
    transform: translateY(-2px);
}

/* FLOAT BUTTONS */
.whatsapp-float-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    width: 28px;
    height: 28px;
    color: white;
}

.whatsapp-label {
    position: absolute;
    bottom: -22px;
    font-size: 10px;
    font-weight: 600;
    color: white;
    background: rgba(37, 211, 102, 0.9);
    padding: 2px 8px;
    border-radius: 10px;
    white-space: nowrap;
}

.whatsapp-ahmed {
    background: #25D366;
}

.whatsapp-walid {
    background: #0088cc;
}

.whatsapp-walid .whatsapp-label {
    background: rgba(0, 136, 204, 0.9);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
    }

    .whatsapp-float i {
        width: 24px;
        height: 24px;
    }

    .whatsapp-label {
        font-size: 9px;
        bottom: -20px;
    }
}

.sound-toggle {
    position: fixed;
    bottom: 100px;
    /* Stacked ABOVE back-to-top (30 + 56 + 14) */
    left: 30px;
    /* Desktop: Left side */
    right: auto;
    width: 56px;
    height: 56px;
    background: var(--gradient-coral);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 1;
    visibility: visible;
    transition: all var(--transition-normal);
    z-index: 998;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.4);
}

[dir="rtl"] .sound-toggle {
    left: auto;
    right: 30px;
}

@media (max-width: 768px) {
    .sound-toggle {
        bottom: 80px;
        /* Stacked ABOVE back-to-top (20 + 45 + 15) */
        right: 20px;
        left: auto;
        width: 45px;
        height: 45px;
    }

    [dir="rtl"] .sound-toggle {
        right: auto;
        left: 20px;
    }
}

.sound-toggle:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 107, 107, 0.6);
}

.sound-toggle i {
    width: 24px;
    height: 24px;
    color: white;
}

.sound-toggle.muted {
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.sound-toggle.muted i {
    color: var(--text-muted);
}

/* SOCIAL LINKS */
.social-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-glass);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0.8;
    position: relative;
    overflow: visible;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(78, 205, 196, 0.3);
    transition: width 0.4s ease, height 0.4s ease;
    transform: translate(-50%, -50%);
    z-index: 0;
}

/* Bubble effects */
.social-link::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(78, 205, 196, 0.6);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
}

.social-link:hover::after {
    animation: bubble 1s ease-out forwards;
}

@keyframes bubble {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0);
    }

    50% {
        opacity: 0.8;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -200%) scale(3);
    }
}

.social-link:hover {
    background: var(--accent-turquoise);
    color: white;
    border-color: var(--accent-turquoise);
    transform: translateY(-5px) scale(1.1);
    opacity: 1;
    box-shadow: 0 8px 20px rgba(78, 205, 196, 0.4),
        0 0 20px rgba(78, 205, 196, 0.3),
        0 0 40px rgba(78, 205, 196, 0.2);
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link:nth-child(1) {
    animation: fadeInUp 0.6s ease 0.1s backwards;
}

.social-link:nth-child(2) {
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.social-link:nth-child(3) {
    animation: fadeInUp 0.6s ease 0.3s backwards;
}

.social-link:nth-child(4) {
    animation: fadeInUp 0.6s ease 0.4s backwards;
}

.social-link:nth-child(5) {
    animation: fadeInUp 0.6s ease 0.5s backwards;
}

.social-link:nth-child(6) {
    animation: fadeInUp 0.6s ease 0.6s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 0.8;
        transform: translateY(0);
    }
}

.social-link i,
.social-link svg {
    width: 22px;
    height: 22px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-link:hover i,
.social-link:hover svg {
    transform: rotate(360deg) scale(1.1);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
}

/* Custom colors matching website theme */
.social-link:nth-child(1):hover {
    /* Facebook - Website Turquoise */
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    border-color: #4ecdc4;
    box-shadow: 0 8px 20px rgba(78, 205, 196, 0.4),
        0 0 20px rgba(78, 205, 196, 0.3);
}

.social-link:nth-child(2):hover {
    /* Facebook Group - Website Coral */
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
    border-color: #ff6b6b;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4),
        0 0 20px rgba(255, 107, 107, 0.3);
}

.social-link:nth-child(2)::after {
    background: rgba(255, 107, 107, 0.6);
}

.social-link:nth-child(3):hover {
    /* Instagram - Turquoise to Purple */
    background: linear-gradient(135deg, #4ecdc4 0%, #a78bfa 100%);
    border-color: #4ecdc4;
    box-shadow: 0 8px 20px rgba(78, 205, 196, 0.4),
        0 0 20px rgba(167, 139, 250, 0.3);
}

.social-link:nth-child(3)::after {
    background: rgba(78, 205, 196, 0.6);
}

.social-link:nth-child(4):hover {
    /* YouTube - Coral */
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
    border-color: #ff6b6b;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4),
        0 0 20px rgba(255, 107, 107, 0.3);
}

.social-link:nth-child(4)::after {
    background: rgba(255, 107, 107, 0.6);
}

.social-link:nth-child(5)::after {
    background: rgba(167, 139, 250, 0.6);
}

.social-link:nth-child(5):hover {
    /* TikTok - Purple to Turquoise */
    background: linear-gradient(135deg, #a78bfa 0%, #4ecdc4 100%);
    border-color: #a78bfa;
    box-shadow: 0 8px 20px rgba(167, 139, 250, 0.4),
        0 0 20px rgba(78, 205, 196, 0.3);
}

.social-link:nth-child(6):hover {
    /* WhatsApp - Turquoise */
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    border-color: #4ecdc4;
    box-shadow: 0 8px 20px rgba(78, 205, 196, 0.4),
        0 0 20px rgba(78, 205, 196, 0.3);
}

.social-link:nth-child(6)::after {
    background: rgba(78, 205, 196, 0.6);
}

/* FOOTER */
.footer {
    background: var(--bg-secondary);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 16px;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent-turquoise);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.footer-contact i {
    width: 18px;
    height: 18px;
    color: var(--accent-turquoise);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--accent-turquoise);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .promo-banner {
        font-size: 0.85rem;
        padding: 10px 40px 10px 16px;
    }

    .promo-btn {
        display: none;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .badges-grid {
        gap: 20px;
    }

    .info-bar {
        flex-direction: column;
        gap: 8px;
        padding: 16px 20px;
    }

    .excursions-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .detail-header {
        height: 200px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-actions {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Review System Styles */
.testimonials-header-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.review-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
}

.review-btn i {
    width: 18px;
    height: 18px;
}

/* Star Rating Input */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 4px;
}

.star-rating input {
    display: none;
}

.star-rating label {
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--text-muted);
    transition: color 0.2s;
}

.star-rating label:hover,
.star-rating label:hover~label,
.star-rating input:checked~label {
    color: var(--accent-gold);
}