                /**
  * HURGHADA TOURS HUB - PREMIUM STYLESHEET
  * Ultra-luxurious design system for European travel market
  * Version: 2.0
  */

                /* ========================================
    PREMIUM COLOR PALETTE
 ======================================== */
                :root {
                    /* Primary Brand Colors */
                    --hurghada-deep-teal: #0A4D4E;
                    --hurghada-azure: #0E7490;
                    --hurghada-turquoise: #06B6D4;
                    --hurghada-coral: #F97316;
                    --hurghada-gold: #D97706;
                    --hurghada-sunset: #FB923C;

                    /* Elegant Neutrals */
                    --cream: #FEF7E8;
                    --sand-light: #F5EFE6;
                    --sand: #E8DCC5;
                    --warm-white: #FAFAF9;
                    --charcoal: #1F2937;
                    --slate: #475569;
                    --white: #FFFFFF;

                    /* Premium Shadows */
                    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
                    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
                    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
                    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
                    --shadow-2xl: 0 30px 70px rgba(0, 0, 0, 0.20);

                    /* Glassmorphism */
                    --glass-bg: rgba(255, 255, 255, 0.1);
                    --glass-border: rgba(255, 255, 255, 0.2);

                    /* Typography Scale */
                    --font-heading: 'Playfair Display', Georgia, serif;
                    --font-subheading: 'Cormorant Garamond', Georgia, serif;
                    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;

                    /* Spacing Scale - Golden Ratio */
                    --space-xs: 0.5rem;
                    --space-sm: 0.75rem;
                    --space-md: 1.5rem;
                    --space-lg: 2.5rem;
                    --space-xl: 4rem;
                    --space-2xl: 6rem;

                    /* Border Radius */
                    --radius-sm: 8px;
                    --radius-md: 16px;
                    --radius-lg: 24px;
                    --radius-xl: 32px;
                    --radius-full: 9999px;

                    /* Transitions */
                    --transition-fast: 0.2s ease;
                    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
                }

                /* ========================================
    UTILITY CLASSES
 ======================================== */
                .text-gradient-teal {
                    background: linear-gradient(135deg, var(--hurghada-deep-teal) 0%, var(--hurghada-turquoise) 100%);
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
                    background-clip: text;
                }

                .text-gradient-coral {
                    background: linear-gradient(135deg, var(--hurghada-coral) 0%, var(--hurghada-gold) 100%);
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
                    background-clip: text;
                }

                .bg-gradient-teal {
                    background: linear-gradient(135deg, var(--hurghada-deep-teal) 0%, var(--hurghada-azure) 100%);
                }

                .bg-gradient-coral {
                    background: linear-gradient(135deg, var(--hurghada-coral) 0%, var(--hurghada-gold) 100%);
                }

                .glass-card {
                    background: var(--glass-bg);
                    backdrop-filter: blur(20px);
                    -webkit-backdrop-filter: blur(20px);
                    border: 1px solid var(--glass-border);
                }

                /* ========================================
    ANIMATION LIBRARY
 ======================================== */
                @keyframes fadeIn {
                    from {
                        opacity: 0;
                    }

                    to {
                        opacity: 1;
                    }
                }

                @keyframes fadeInUp {
                    from {
                        opacity: 0;
                        transform: translateY(40px);
                    }

                    to {
                        opacity: 1;
                        transform: translateY(0);
                    }
                }

                @keyframes fadeInDown {
                    from {
                        opacity: 0;
                        transform: translateY(-40px);
                    }

                    to {
                        opacity: 1;
                        transform: translateY(0);
                    }
                }

                @keyframes slideInRight {
                    from {
                        opacity: 0;
                        transform: translateX(60px);
                    }

                    to {
                        opacity: 1;
                        transform: translateX(0);
                    }
                }

                @keyframes scaleIn {
                    from {
                        opacity: 0;
                        transform: scale(0.9);
                    }

                    to {
                        opacity: 1;
                        transform: scale(1);
                    }
                }

                @keyframes shimmer {
                    0% {
                        background-position: -1000px 0;
                    }

                    100% {
                        background-position: 1000px 0;
                    }
                }

                @keyframes float {
                    0% {
                        transform: translateY(0px);
                    }

                    50% {
                        transform: translateY(-10px);
                    }

                    100% {
                        transform: translateY(0px);
                    }
                }

                @keyframes pulse {
                    0% {
                        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7);
                    }

                    70% {
                        box-shadow: 0 0 0 15px rgba(249, 115, 22, 0);
                    }

                    100% {
                        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
                    }
                }

                /* ========================================
    PREMIUM COMPONENTS
 ======================================== */

                /* Luxury Badge */
                .premium-badge {
                    display: inline-flex;
                    align-items: center;
                    gap: 0.5rem;
                    padding: 0.5rem 1.5rem;
                    background: linear-gradient(135deg, var(--hurghada-coral), var(--hurghada-gold));
                    color: var(--white);
                    border-radius: var(--radius-full);
                    font-size: 0.875rem;
                    font-weight: 600;
                    letter-spacing: 1px;
                    text-transform: uppercase;
                    box-shadow: var(--shadow-md);
                    animation: pulse 2s infinite;
                }

                /* Elegant Divider */
                .elegant-divider {
                    width: 80px;
                    height: 4px;
                    background: linear-gradient(90deg, var(--hurghada-coral), var(--hurghada-gold));
                    border-radius: var(--radius-full);
                    margin: var(--space-md) auto;
                }

                /* Premium Card */
                .premium-card {
                    background: var(--white);
                    border-radius: var(--radius-lg);
                    padding: var(--space-lg);
                    box-shadow: var(--shadow-md);
                    transition: all var(--transition-slow);
                    position: relative;
                    overflow: hidden;
                }

                .premium-card::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.7s ease;
                }

                .premium-card:hover::before {
                    left: 100%;
                }

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

                /* Luxury Button Set */
                .btn-luxury {
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    gap: 0.75rem;
                    padding: 1rem 2.5rem;
                    font-family: var(--font-body);
                    font-weight: 600;
                    font-size: 1rem;
                    border-radius: var(--radius-full);
                    text-decoration: none;
                    transition: all var(--transition-base);
                    position: relative;
                    overflow: hidden;
                    cursor: pointer;
                }

                .btn-luxury-primary {
                    background: linear-gradient(135deg, var(--hurghada-coral) 0%, var(--hurghada-gold) 100%);
                    color: var(--white);
                    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
                }

                .btn-luxury-primary:hover {
                    transform: translateY(-3px);
                    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.5);
                }

                .btn-luxury-secondary {
                    background: transparent;
                    color: var(--hurghada-coral);
                    border: 2px solid var(--hurghada-coral);
                }

                .btn-luxury-secondary:hover {
                    background: var(--hurghada-coral);
                    color: var(--white);
                    transform: translateY(-3px);
                    box-shadow: var(--shadow-lg);
                }

                /* Icon Box */
                .icon-box {
                    width: 70px;
                    height: 70px;
                    background: linear-gradient(135deg, var(--hurghada-turquoise), var(--hurghada-azure));
                    border-radius: 20px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 2rem;
                    box-shadow: var(--shadow-md);
                    transition: all var(--transition-base);
                }

                .icon-box:hover {
                    transform: rotate(5deg) scale(1.1);
                    box-shadow: var(--shadow-lg);
                }

                /* Premium Price Tag */
                .price-tag {
                    position: absolute;
                    top: 1.5rem;
                    right: 1.5rem;
                    background: var(--glass-bg);
                    backdrop-filter: blur(10px);
                    border: 1px solid var(--glass-border);
                    padding: 0.75rem 1.5rem;
                    border-radius: var(--radius-full);
                    font-weight: 700;
                    font-size: 1.125rem;
                    color: var(--white);
                    box-shadow: var(--shadow-md);
                }

                /* Testimonial Card */
                .testimonial-card {
                    background: var(--white);
                    border-radius: var(--radius-lg);
                    padding: var(--space-lg);
                    box-shadow: var(--shadow-md);
                    position: relative;
                    transition: all var(--transition-slow);
                }

                .testimonial-card::before {
                    content: '"';
                    position: absolute;
                    top: -20px;
                    left: 20px;
                    font-family: var(--font-heading);
                    font-size: 100px;
                    color: var(--hurghada-coral);
                    opacity: 0.1;
                    line-height: 1;
                }

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

                /* ========================================
    HEADER LAYOUT STYLES
 ======================================== */
                .site-header {
                    position: fixed;
                    top: 0;
                    left: 0;
                    right: 0;
                    z-index: 1000;
                    background: rgba(255, 255, 255, 0.85);
                    backdrop-filter: blur(20px) saturate(180%);
                    -webkit-backdrop-filter: blur(20px) saturate(180%);
                    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
                    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
                    transition: all 0.3s ease;
                }

                .site-header.scrolled {
                    background: rgba(255, 255, 255, 0.95);
                    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
                }

                .header-container {
                    max-width: 1400px;
                    margin: 0 auto;
                    padding: 1.25rem 2rem;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                }

                .site-branding {
                    display: flex;
                    align-items: center;
                }

                .site-logo {
                    height: 45px !important;
                    /* Force height */
                    max-height: 45px !important;
                    width: auto !important;
                    /* Force width auto to maintain aspect ratio */
                    max-width: 250px;
                    /* Constraint to prevent it from pushing content if aspect ratio is wide */
                    object-fit: contain;
                    display: block;
                    transition: all 0.3s ease;
                }

                .site-branding h1 {
                    font-family: var(--font-heading);
                    font-size: 1.75rem;
                    font-weight: 900;
                    background: linear-gradient(135deg, var(--hurghada-deep-teal) 0%, var(--hurghada-turquoise) 100%);
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
                    background-clip: text;
                    margin: 0;
                    letter-spacing: -0.5px;
                }

                .site-description {
                    font-family: var(--font-subheading);
                    font-size: 0.9rem;
                    color: var(--hurghada-azure);
                    margin-top: 0.125rem;
                    font-weight: 400;
                    letter-spacing: 0.3px;
                }

                .main-navigation ul {
                    display: flex;
                    gap: 0.25rem;
                    list-style: none;
                    align-items: center;
                }

                .main-navigation a {
                    color: var(--charcoal);
                    text-decoration: none;
                    font-weight: 500;
                    font-size: 0.9rem;
                    padding: 0.5rem 0.75rem;
                    border-radius: 50px;
                    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                    position: relative;
                }

                .main-navigation a::before {
                    content: '';
                    position: absolute;
                    bottom: 0;
                    left: 50%;
                    transform: translateX(-50%);
                    width: 0;
                    height: 2px;
                    background: linear-gradient(90deg, var(--hurghada-coral), var(--hurghada-gold));
                    transition: width 0.3s ease;
                }

                .main-navigation a:hover {
                    color: var(--hurghada-coral);
                }

                .main-navigation a:hover::before {
                    width: 80%;
                }

                .nav-cta {
                    background: linear-gradient(135deg, var(--hurghada-coral) 0%, var(--hurghada-sunset) 100%);
                    color: var(--white) !important;
                    font-weight: 600;
                    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
                }

                .nav-cta:hover {
                    transform: translateY(-2px);
                    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
                    color: var(--white) !important;
                    font-weight: 600;
                }

                .nav-cta::before {
                    display: none;
                }

                /* ========================================
    FOOTER LAYOUT STYLES
 ======================================== */
                .site-footer {
                    background: var(--hurghada-deep-teal);
                    color: var(--cream);
                    position: relative;
                    overflow: hidden;
                }

                .site-footer::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 6px;
                    background: linear-gradient(90deg, var(--hurghada-coral), var(--hurghada-gold), var(--hurghada-turquoise));
                }

                .footer-content {
                    padding: 4rem 0 2rem;
                }

                .footer-grid {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                    gap: 3rem;
                    margin-bottom: 3rem;
                }

                .footer-widget h3 {
                    font-family: var(--font-heading);
                    font-size: 1.375rem;
                    font-weight: 700;
                    color: var(--white);
                    margin-bottom: 1.5rem;
                    text-transform: uppercase;
                    letter-spacing: 1px;
                }

                .footer-widget p {
                    line-height: 1.8;
                    margin-bottom: 1rem;
                }

                .footer-widget ul {
                    list-style: none;
                }

                .footer-widget ul li {
                    padding: 0.625rem 0;
                    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                }

                .footer-widget a {
                    color: var(--sand);
                    text-decoration: none;
                    transition: all 0.3s ease;
                    display: inline-block;
                }

                .footer-widget a:hover {
                    color: var(--hurghada-coral);
                    padding-left: 0.5rem;
                }

                .social-links {
                    display: flex;
                    gap: 1rem;
                    margin-top: 1.5rem;
                }

                .social-link {
                    width: 48px;
                    height: 48px;
                    background: var(--glass-bg);
                    border: 1px solid var(--glass-border);
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 1.25rem;
                    transition: all 0.3s ease;
                }

                .social-link:hover {
                    background: var(--hurghada-coral);
                    transform: translateY(-4px);
                    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
                }

                .footer-bottom {
                    text-align: center;
                    padding: 2rem 0;
                    border-top: 1px solid rgba(255, 255, 255, 0.1);
                }

                .footer-bottom p {
                    color: var(--sand-light);
                }

                .footer-bottom a {
                    color: var(--hurghada-coral);
                }

                /* Container for general layout */
                .container {
                    max-width: 1400px;
                    margin: 0 auto;
                    padding: 0 2rem;
                }

                /* ========================================
    RESPONSIVE BREAKPOINTS
 ======================================== */
                @media (max-width: 1200px) {
                    :root {
                        font-size: 15px;
                    }
                }

                @media (max-width: 768px) {
                    :root {
                        font-size: 14px;
                        --space-xl: 3rem;
                        --space-2xl: 4rem;
                    }
                }

                @media (max-width: 480px) {
                    :root {
                        font-size: 13px;
                    }
                }

                /* ========================================
    ACCESSIBILITY ENHANCEMENTS
 ======================================== */
                @media (prefers-reduced-motion: reduce) {

                    *,
                    *::before,
                    *::after {
                        animation-duration: 0.01ms !important;
                        animation-iteration-count: 1 !important;
                        transition-duration: 0.01ms !important;
                    }
                }

                /* Focus visible for keyboard navigation */
                *:focus-visible {
                    outline: 3px solid var(--hurghada-coral);
                    outline-offset: 3px;
                    border-radius: var(--radius-sm);
                }

                /* High contrast mode support */
                @media (prefers-contrast: high) {
                    :root {
                        --shadow-sm: 0 0 0 1px currentColor;
                        --shadow-md: 0 0 0 2px currentColor;
                        --shadow-lg: 0 0 0 3px currentColor;
                    }
                }

                /* ========================================
    SOCIAL SHARE COMPONENT
    ======================================== */
                .social-share-container {
                    background: var(--warm-white);
                    border: 1px solid rgba(249, 115, 22, 0.1);
                    border-radius: 16px;
                    padding: 2rem;
                    margin: 3rem 0;
                    text-align: center;
                    box-shadow: var(--shadow-sm);
                }

                .share-header h3 {
                    font-family: var(--font-heading);
                    font-size: 1.5rem;
                    color: var(--hurghada-deep-teal);
                    margin: 0 0 0.5rem 0;
                }

                .share-header p {
                    font-family: var(--font-body);
                    color: var(--slate);
                    margin: 0 0 1.5rem 0;
                    font-size: 1rem;
                }

                .social-share {
                    display: flex;
                    flex-wrap: wrap;
                    gap: 12px;
                    align-items: center;
                    justify-content: center;
                    margin: 0;
                    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
                }

                .share-label {
                    font-weight: 600;
                    margin-right: 6px;
                }

                .share-btn {
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    width: 44px;
                    height: 44px;
                    border-radius: 50%;
                    text-decoration: none;
                    color: #fff;
                    cursor: pointer;
                    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s ease, opacity 0.2s ease;
                    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
                    flex-shrink: 0;
                }

                .share-btn:hover {
                    transform: translateY(-4px) scale(1.1);
                    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
                    opacity: 1;
                    z-index: 10;
                }

                .share-btn svg {
                    width: 22px;
                    height: 22px;
                    fill: white;
                    pointer-events: none;
                }

                /* Brand colors */
                .fb {
                    background: #1877f2;
                }

                .x {
                    background: #000000;
                }

                .li {
                    background: #0a66c2;
                }

                .pin {
                    background: #bd081c;
                }

                .wa {
                    background: #25d366;
                }

                .tg {
                    background: #229ed9;
                }

                .em {
                    background: #555555;
                }