/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Coin flip effect */
.coin-image.coin-flip {
  perspective: 1000px;
}
.coin-image.coin-flip .coin-card {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}
.coin-image.coin-flip .coin-face {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  backface-visibility: hidden;
}
.coin-image.coin-flip .coin-front img,
.coin-image.coin-flip .coin-back img { width: 100%; height: 100%; object-fit: contain; }
.coin-image.coin-flip .coin-back { transform: rotateY(180deg); }
.gallery-item:hover .coin-image.coin-flip .coin-card { transform: rotateY(180deg); }
/* Disable generic image hover transforms for flip faces */
.gallery-item:hover .coin-image.coin-flip img { transform: none !important; }

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

body.arabic {
    font-family: 'Cairo', sans-serif;
}

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

/* Modern Professional Header */
.modern-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5000;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.1);
}

.modern-header.scrolled {
    background: rgba(15, 23, 42, 0.99);
    box-shadow: 0 8px 60px rgba(0, 0, 0, 0.15);
}

.professional-navbar {
    position: relative;
    width: 100%;
    height: auto;
}

/* Navigation Wrapper */
.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-header.scrolled .nav-wrapper {
    padding: 0.7rem 2rem;
}

/* Brand Section */
.brand-section {
    flex: 0 0 auto;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
}

.brand-link:hover {
    transform: translateY(-2px);
}

.brand-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #67e8f9 0%, #a78bfa 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 25px rgba(103, 232, 249, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-link:hover .brand-icon {
    background: linear-gradient(135deg, #22d3ee 0%, #8b5cf6 100%);
    box-shadow: 0 12px 35px rgba(103, 232, 249, 0.4);
    transform: scale(1.1) rotate(5deg);
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.brand-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
    transition: all 0.4s ease;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Inter', sans-serif;
}

.brand-link:hover .brand-title {
    background: linear-gradient(135deg, #67e8f9 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Main Navigation */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
    align-items: center;
}

.nav-item {
    position: relative;
    margin: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(103, 232, 249, 0.15) 0%, rgba(167, 139, 250, 0.15) 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
    left: 0;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.nav-link.active {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(103, 232, 249, 0.2) 0%, rgba(167, 139, 250, 0.2) 100%);
    border: 1px solid rgba(103, 232, 249, 0.3);
    box-shadow: 0 4px 15px rgba(103, 232, 249, 0.2);
}

.nav-icon {
    font-size: 0.9rem;
    opacity: 0.8;
}

.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 0.3rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}



/* Header Actions */
.header-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.language-btn {
    color: rgba(255, 255, 255, 0.9);
    background: linear-gradient(135deg, rgba(103, 232, 249, 0.1) 0%, rgba(167, 139, 250, 0.1) 100%);
    border: 1px solid rgba(103, 232, 249, 0.3);
}

.language-btn:hover {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(103, 232, 249, 0.2) 0%, rgba(167, 139, 250, 0.2) 100%);
    border-color: rgba(103, 232, 249, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(103, 232, 249, 0.3);
}

/* Modern Mega Dropdown */
.dropdown {
    position: relative;
}

.mega-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(30px);
    border-radius: 16px;
    padding: 2rem;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 6000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.mega-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid rgba(15, 23, 42, 0.98);
    pointer-events: none;
}

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

.dropdown-grid {
    display: grid;
    gap: 1.5rem;
}

.dropdown-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dropdown-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.dropdown-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(103, 232, 249, 0.1) 0%, rgba(167, 139, 250, 0.1) 100%);
    transition: all 0.3s ease;
    z-index: -1;
}

.dropdown-link:hover::before,
.dropdown-link.active::before {
    left: 0;
}

.dropdown-link:hover {
    color: #ffffff;
    background: rgba(103, 232, 249, 0.1);
    transform: translateX(8px);
}

.dropdown-link.active {
    color: #ffffff;
    background: rgba(103, 232, 249, 0.15);
    border-left: 3px solid #67e8f9;
}

.dropdown-link i {
    width: 16px;
    font-size: 0.9rem;
    opacity: 0.8;
}


/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    gap: 4px;
}

.mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Lock body scroll when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.3) 0%, rgba(30, 41, 59, 0.25) 50%, rgba(51, 65, 85, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Enhanced animated particles */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(3px 3px at 20px 30px, rgba(103, 232, 249, 0.4), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(167, 139, 250, 0.3), transparent),
        radial-gradient(2px 2px at 90px 40px, rgba(34, 197, 94, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(59, 130, 246, 0.4), transparent),
        radial-gradient(2px 2px at 160px 20px, rgba(245, 158, 11, 0.3), transparent),
        radial-gradient(1px 1px at 200px 60px, rgba(239, 68, 68, 0.2), transparent);
    background-repeat: repeat;
    background-size: 250px 120px;
    animation: enhancedSparkle 25s ease-in-out infinite;
    pointer-events: none;
    opacity: 0.8;
}

@keyframes enhancedSparkle {
    0% { 
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.8;
    }
    25% {
        transform: translateY(-30px) rotate(90deg) scale(1.1);
        opacity: 0.9;
    }
    50% { 
        transform: translateY(-60px) rotate(180deg) scale(1);
        opacity: 0.7;
    }
    75% {
        transform: translateY(-90px) rotate(270deg) scale(1.05);
        opacity: 0.8;
    }
    100% { 
        transform: translateY(-120px) rotate(360deg) scale(1);
        opacity: 0.8;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../../hero-bg.png') center/cover no-repeat;
    opacity: 1;
    z-index: -1;
    filter: brightness(1.1) contrast(1.05);
}

.hero-content {
    text-align: center;
    color: #fff;
    z-index: 2;
    position: relative;
    animation: fadeInUp 1.2s ease-out;
    width: 100%;
    max-width: none;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 0;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    text-align: center;
    line-height: 1.1;
}


@keyframes textGlow {
    0% {
        text-shadow: 0 10px 30px rgba(103, 232, 249, 0.4);
        transform: translateY(0);
        filter: brightness(1);
    }
    100% {
        text-shadow: 0 20px 60px rgba(168, 85, 247, 0.6);
        transform: translateY(-8px);
        filter: brightness(1.1);
    }
}

@keyframes lineGlow {
    0% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
    }
    100% {
        box-shadow: 0 0 30px rgba(168, 85, 247, 0.8);
    }
}

/* Tour Cards (homepage slider removed; keeping generic .tour-card shared styles) */
.tour-card {
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: 0 10px 24px rgba(2, 6, 23, 0.12);
    position: relative;
    height: auto;
}

.tour-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.04), rgba(147, 51, 234, 0.04));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 25px;
    z-index: 1;
}

.tour-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #60a5fa, #a78bfa);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.tour-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 24px 56px rgba(2, 6, 23, 0.18);
}

.tour-card.active {
    transform: scale(1.03) translateY(-14px);
    box-shadow: 0 34px 84px rgba(2, 6, 23, 0.22), 0 0 0 1px rgba(59,130,246,0.35) inset;
}

.tour-card:hover::after,
.tour-card.active::after {
    opacity: 1;
}

/* Sections */
.explore-section,
.profile-section,
.stories-section,
section.summit-stats {
    padding: 6rem 0;
}

/* New Explore Cards Design */
.new-explore-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.new-explore-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 50%, rgba(51, 65, 85, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.new-explore-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: left;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card-slideshow {
    flex: 1;
    position: relative;
    margin-bottom: 1rem;
}

.slide-container {
    width: 100%;
    height: 150px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.slide-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(16, 185, 129, 0.9);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.card-single-image {
    flex: 1;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.card-single-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-action {
    color: #10b981;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    margin-top: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.bottom-row {
    display: flex;
    gap: 1rem;
}

.new-explore-card.small {
    flex: 1;
    min-height: 180px;
}

@media (max-width: 768px) {
    .new-explore-grid {
        max-width: 100%;
        gap: 1.5rem;
    }
    
    .new-explore-card {
        padding: 1.5rem;
        min-height: 180px;
    }
    
    .slide-container,
    .card-single-image {
        height: 120px;
    }
    
    .bottom-row {
        flex-direction: column;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
}

/* Info Highlights */
.info-highlights {
    padding: 4rem 0;
    background: #f8fafc;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.highlight-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(2, 6, 23, 0.12);
}

.highlight-card i {
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 0.75rem;
}

.highlight-card h3 {
    font-size: 1.2rem;
    margin: 0.5rem 0 0.25rem;
    color: #2c3e50;
}

.highlight-card p {
    color: #667085;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.highlight-link {
    display: inline-block;
    color: #1e40af;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid rgba(30, 64, 175, 0.2);
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.highlight-link:hover {
    color: #0f172a;
    border-color: rgba(30, 64, 175, 0.5);
}

/* Explore Grid */
.explore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.explore-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    transform: translateY(20px);
    opacity: 0;
    animation: cardSlideUp 0.8s ease-out forwards;
}

.explore-card:nth-child(2) { animation-delay: 0.2s; }
.explore-card:nth-child(3) { animation-delay: 0.4s; }

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

.explore-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(103, 232, 249, 0.1) 0%, rgba(167, 139, 250, 0.1) 100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    opacity: 0;
}

.explore-card:hover::before {
    left: 0;
    opacity: 1;
}

.explore-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 40px 100px rgba(103, 232, 249, 0.15);
    border-color: rgba(103, 232, 249, 0.2);
}

.explore-image {
    height: 250px;
    overflow: hidden;
}

.explore-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.explore-card:hover .explore-image img {
    transform: scale(1.1);
}

.explore-content {
    padding: 2rem;
}

.explore-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.explore-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.explore-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.explore-link:hover {
    color: #e55a2b;
}

/* Profile Section */
.profile-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.profile-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.profile-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.profile-image {
    position: relative;
}

.profile-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
}

.profile-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1e40af;
    font-weight: 800;
}

.profile-text p {
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 500;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.5);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: #059669;
    text-shadow: none;
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    color: #374151 !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

.stat-item {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  border-color: #0ea5e9;
}

.intro-stats .stat-item:nth-child(1) .stat-number { color: #059669; font-weight: 800; }
.intro-stats .stat-item:nth-child(2) .stat-number { color: #dc2626; font-weight: 800; }
.intro-stats .stat-item:nth-child(3) .stat-number { color: #7c3aed; font-weight: 800; }

.intro-stats .stat-item:nth-child(1) .stat-label { color: #047857; font-weight: 800; }
.intro-stats .stat-item:nth-child(2) .stat-label { color: #b91c1c; font-weight: 800; }
.intro-stats .stat-item:nth-child(3) .stat-label { color: #6b21a8; font-weight: 800; }

.profile-button {
    display: inline-block;
    background: #ff6b35;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.profile-button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

/* Stories Section */
.stories-section {
    background: #f8f9fa;
}

.stories-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.story-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.story-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.story-card h3 {
    padding: 1rem 1.5rem 0.5rem;
    font-size: 1.2rem;
    color: #2c3e50;
}

.story-card p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
}

/* Summit Stats Section */
section.summit-stats {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 50%, rgba(51, 65, 85, 0.95) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

section.summit-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(103, 232, 249, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(167, 139, 250, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(34, 197, 94, 0.05) 50%, transparent 70%);
    animation: mountainMist 15s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes mountainMist {
    0% {
        opacity: 0.3;
        transform: translateX(-10px);
    }
    100% {
        opacity: 0.6;
        transform: translateX(10px);
    }
}

section.summit-stats .container {
    position: relative;
    z-index: 1;
}

section.summit-stats h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 4rem;
}

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

.stat-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: 24px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.stat-icon {
    font-size: 2.5rem;
    color: #ff6b35;
}

.stat-info .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.stat-info .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Newsletter */
.newsletter-signup {
    text-align: center;
    margin-top: 3rem;
}

.newsletter-signup h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
}

.newsletter-form button {
    background: #ff6b35;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #e55a2b;
}

/* Detail pages: hero and sections spacing */
.tours-hero {
    padding: 120px 0 48px;
}
.tours-hero.detail-hero {
    padding-top: 140px; /* account for fixed header */
    padding-bottom: 56px;
}
.detail-cover {
    margin: 24px 0 48px; /* space between hero and main image, and before meta */
}
.detail-meta {
    padding: 32px 0;
}
.details-gallery {
    padding: 40px 0;
}
.details-content {
    padding: 48px 0 88px; /* extra bottom space above footer */
}
@media (max-width: 768px) {
    .tours-hero { padding: 100px 0 36px; }
    .tours-hero.detail-hero { padding-top: 120px; padding-bottom: 40px; }
    .detail-cover { margin: 16px 0 32px; }
    .detail-meta { padding: 24px 0; }
    .details-gallery { padding: 28px 0; }
    .details-content { padding: 36px 0 72px; }
}

/* Footer */
.footer {
    background: #2c3e50;
    color: #fff;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ff6b35;
}

.footer-section p,
.footer-section li {
    margin-bottom: 0.5rem;
    color: #bdc3c7;
}

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

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff6b35;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ff6b35;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

.footer-bottom p {
    margin: 0.5rem 0;
}

.developer-credit {
    font-size: 0.9rem;
    margin-top: 1rem !important;
}

.developer-credit a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.developer-credit a:hover {
    color: #10b981;
    text-decoration: underline;
}

/* Arabic RTL Styles */
body[dir="rtl"] {
    text-align: right;
}

body[dir="rtl"] .nav-list {
    flex-direction: row-reverse;
}

body[dir="rtl"] .profile-content {
    grid-template-columns: 1fr 1fr;
}

body[dir="rtl"] .profile-stats {
    flex-direction: row-reverse;
}

body[dir="rtl"] .card-stats {
    flex-direction: row-reverse;
}


/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    /* Modern Header Mobile */
    .nav-wrapper {
        padding: 0.8rem 1rem;
        gap: 1rem;
    }

    .brand-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .brand-title {
        font-size: 1.3rem;
    }

    .brand-subtitle {
        font-size: 0.7rem;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 100px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 4000;
        overflow-y: auto;
    }

    .main-navigation.active {
        left: 0;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        padding: 2rem 0;
        gap: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        width: 100%;
        padding: 1.2rem 2rem;
        justify-content: flex-start;
        border-radius: 0;
        font-size: 1rem;
    }

    .nav-link:hover {
        transform: none;
        background: rgba(103, 232, 249, 0.1);
    }

    .dropdown .mega-dropdown {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        margin-top: 0 !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        width: 100% !important;
        display: block !important;
    }

    .dropdown.open .mega-dropdown {
        max-height: 500px !important;
        padding: 1rem 0 !important;
        display: block !important;
    }

    .mega-dropdown::before {
        display: none !important;
    }

    .dropdown-grid {
        width: 100% !important;
        display: block !important;
    }

    .dropdown-section {
        width: 100% !important;
        display: block !important;
    }

    .dropdown-link {
        padding: 1rem 3rem !important;
        font-size: 0.95rem !important;
        display: flex !important;
        align-items: center !important;
        gap: 0.8rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(147, 51, 234, 0.15)) !important;
        color: #ffffff !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        margin-bottom: 2px !important;
        backdrop-filter: blur(5px) !important;
        border-left: 3px solid rgba(59, 130, 246, 0.4) !important;
    }

    .dropdown-link:hover {
        transform: none !important;
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(147, 51, 234, 0.25)) !important;
        color: #ffffff !important;
        border-left: 3px solid rgba(59, 130, 246, 0.8) !important;
        box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2) !important;
    }

    .dropdown-link i {
        width: 16px !important;
        text-align: center !important;
        opacity: 0.8 !important;
    }

    .header-actions {
        position: fixed;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 4001;
        background: rgba(15, 23, 42, 0.95);
        border-radius: 50px;
        padding: 0.5rem;
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .main-navigation.active ~ .nav-wrapper .header-actions,
    .mobile-menu-open .header-actions {
        opacity: 1;
        visibility: visible;
    }

    .action-btn {
        padding: 0.8rem 1.5rem;
        border-radius: 25px;
    }

    .mobile-toggle {
        display: flex;
        z-index: 5001;
    }

    /* Hide desktop elements on mobile */
    .dropdown-arrow {
        margin-left: auto;
    }

    /* Additional Mobile Styles */
    .hero {
        height: 100vh;
        padding: 0 1rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
        max-width: 90%;
    }

    /* Section Headers Mobile */
    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .section-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* Hero Pages Mobile */
    .tours-hero,
    .equipment-hero,
    .trips-hero,
    .collection-hero,
    .summits-hero,
    .about-hero,
    .contact-hero {
        padding: 6rem 0 4rem;
    }

    .tours-hero h1,
    .equipment-hero h1,
    .trips-hero h1,
    .collection-hero h1,
    .summits-hero h1,
    .about-hero h1,
    .contact-hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .tours-hero p,
    .equipment-hero p,
    .trips-hero p,
    .collection-hero p,
    .summits-hero p,
    .about-hero p,
    .contact-hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* Cards and Grids Mobile */
    

    .explore-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .profile-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-card {
        padding: 2rem;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 1rem;
    }

    /* Sections Padding Mobile */
    .explore-section,
    .profile-section,
    .stories-section,
    section.summit-stats {
        padding: 4rem 0;
    }

    /* Profile Section Mobile */
    .profile-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .profile-image {
        order: 1;
        max-width: 250px;
        margin: 0 auto;
    }

    .profile-image img {
        height: 250px;
    }

    .profile-text {
        order: 2;
    }

    .profile-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat {
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* Buttons Mobile */
    .cta-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-height: 48px;
    }

    /* Newsletter Mobile */
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-form input {
        margin-bottom: 1rem;
    }
}

/* About Page Styles */
.bio-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.02) 0%, rgba(30, 41, 59, 0.05) 100%);
}

.bio-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.bio-image {
    position: relative;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bio-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.bio-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.bio-text {
    padding-left: 1rem;
}

.bio-text h2 {
    font-size: 3rem;
    font-weight: 300;
    color: #1e293b;
    margin-bottom: 2rem;
    position: relative;
}

.bio-text h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}

.bio-intro {
    font-size: 1.2rem;
    font-weight: 300;
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.bio-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.bio-highlights {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(147, 51, 234, 0.05));
    border-radius: 15px;
    border-left: 4px solid #3b82f6;
}

.bio-highlights h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.bio-highlights ul {
    list-style: none;
    padding: 0;
}

.bio-highlights li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    position: relative;
    padding-left: 2rem;
    color: #475569;
}

.bio-highlights li::before {
    content: '*';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.2rem;
}

.bio-highlights li:last-child {
    border-bottom: none;
}

.philosophy-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(147, 51, 234, 0.03) 100%);
}

.philosophy-content h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 300;
    color: #1e293b;
    margin-bottom: 4rem;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.philosophy-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.15);
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.philosophy-card h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.philosophy-card p {
    color: #64748b;
    line-height: 1.6;
}

.journey-timeline {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.02) 0%, rgba(30, 41, 59, 0.05) 100%);
}

.journey-timeline h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 300;
    color: #1e293b;
    margin-bottom: 4rem;
}

.journey-timeline .timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.journey-timeline .timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #3b82f6, #8b5cf6);
}

.journey-timeline .timeline-item {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
}

.journey-timeline .timeline-item:nth-child(odd) {
    flex-direction: row;
}

.journey-timeline .timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.journey-timeline .timeline-year {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
    margin: 0 2rem;
}

.journey-timeline .timeline-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
}

.journey-timeline .timeline-content h4 {
font-size: 1.5rem;
color: #1e293b;
}

.journey-timeline .timeline-content p {
color: #64748b;
line-height: 1.6;
}

.journey-timeline .timeline-item:nth-child(odd) .timeline-content {
grid-column: 3;
}

.journey-timeline .timeline-item:nth-child(even) .timeline-content {
grid-column: 1;
}

html[dir="rtl"] .journey-timeline .timeline-item:nth-child(odd) .timeline-content {
grid-column: 1;
}

html[dir="rtl"] .journey-timeline .timeline-item:nth-child(even) .timeline-content {
grid-column: 3;
}

@media (max-width: 768px) {
.journey-timeline .timeline-item {
grid-template-columns: 1fr;
}
.journey-timeline .timeline-year {
grid-column: 1;
justify-self: center;
margin: 0 0 1rem;
}
.journey-timeline .timeline-item .timeline-content {
grid-column: 1;
}
}

.skills-certifications {
padding: 6rem 0;
background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(147, 51, 234, 0.03) 100%);
}

.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.skills-section h3,
.certifications-section h3 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 600;
}

.skill-item {
    margin-bottom: 2rem;
}

.skill-name {
    display: block;
    font-weight: 500;
    color: #475569;
    margin-bottom: 0.5rem;
}

.skill-bar {
    height: 8px;
    background: rgba(148, 163, 184, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 4px;
    transition: width 1s ease;
}

.certifications-list {
    list-style: none;
    padding: 0;
}

.certifications-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    color: #475569;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.certifications-list li:last-child {
    border-bottom: none;
}

.certifications-list i {
    color: #10b981;
    font-size: 1.2rem;
}

.collections-passion {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.02) 0%, rgba(30, 41, 59, 0.05) 100%);
}

.collections-passion h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 300;
    color: #1e293b;
    margin-bottom: 4rem;
}

.passion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.passion-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.passion-card:hover {
    transform: translateY(-5px);
}

.passion-image {
    height: 250px;
    overflow: hidden;
}

.passion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.passion-content {
    padding: 2.5rem;
}

.passion-content h3 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.passion-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.passion-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.passion-link:hover {
    color: #1d4ed8;
}

.contact-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(147, 51, 234, 0.1) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 300;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.btn-secondary:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

/* About Mobile Responsive */
@media (max-width: 768px) {
    .bio-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .bio-image img {
        height: 300px;
    }
    
    .bio-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .bio-text {
        padding-left: 0;
    }
    
    .bio-text h2 {
        font-size: 2rem;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .journey-timeline .timeline::before {
        left: 30px;
    }
    
    .journey-timeline .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }
    
    .journey-timeline .timeline-year {
        position: absolute;
        left: 0;
        width: 60px;
        height: 60px;
        font-size: 1rem;
        margin: 0;
    }
    
    .journey-timeline .timeline-content {
        margin-left: 1rem;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .passion-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Tablet Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        padding: 0 2rem;
    }
    
    .nav-container {
        padding: 0 2rem;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .explore-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .tours-hero h1,
    .equipment-hero h1,
    .trips-hero h1,
    .collection-hero h1,
    .summits-hero h1,
    .about-hero h1,
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .nav-container {
        padding: 0 0.5rem;
    }
    
    .container {
        padding: 0 0.5rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Additional Section Styles */
.tours-hero,
.equipment-hero,
.trips-hero,
.collection-hero,
.summits-hero,
.about-hero,
.contact-hero {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.95) 0%, rgba(40, 53, 147, 0.9) 50%, rgba(67, 56, 202, 0.95) 100%);
    color: #fff;
    padding: 8rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tours-hero::before,
.equipment-hero::before,
.trips-hero::before,
.collection-hero::before,
.summits-hero::before,
.about-hero::before,
.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.tours-hero h1,
.equipment-hero h1,
.trips-hero h1,
.collection-hero h1,
.summits-hero h1,
.about-hero h1,
.contact-hero h1 {
    font-size: 4rem;
    font-weight: 200;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    position: relative;
    z-index: 1;
}

.tours-hero p,
.equipment-hero p,
.trips-hero p,
.collection-hero p,
.summits-hero p,
.about-hero p,
.contact-hero p {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Enhanced Collection Intro Styles */
.collection-intro,
.summits-intro {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.collection-intro::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 140%;
    height: 160%;
    background: radial-gradient(ellipse, rgba(251, 146, 60, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.collection-intro::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -25%;
    width: 120%;
    height: 180%;
    background: radial-gradient(ellipse, rgba(34, 197, 94, 0.03) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
}

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

.intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
    position: relative;
}

.intro-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #10b981);
    border-radius: 2px;
}

.intro-text p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.intro-stats {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f59e0b, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.progress-circle {
    position: relative;
    margin: 0 auto 2rem;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.progress-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
    display: block;
}

.next-targets h4 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.next-targets ul {
    list-style: none;
}

.next-targets li {
    padding: 0.5rem 0;
    color: #666;
}

/* Tours Grid Section */
.tours-grid-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.tours-grid-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 120%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.03) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.tours-grid-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 100%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(16, 185, 129, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.tours-grid-section .container {
    position: relative;
    z-index: 2;
}

/* Enhanced Collection Filters */
.collection-filters {
    padding: 6rem 0 0 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.collection-filters::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(34, 197, 94, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.collection-filters .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.filter-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

/* Tours filter styles maintained */
.tours-filter {
    padding: 0 0 4rem 0;
    text-align: center;
    margin-bottom: 2rem;
}

.filter-buttons,
.tours-filter {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-button {
    background: #fff;
    border: 2px solid #e2e8f0;
    color: #64748b;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
    position: relative;
    overflow: hidden;
}

.filter-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.5s ease;
}

.filter-button:hover::before {
    left: 100%;
}

.filter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.12);
    border-color: #a855f7;
    color: #6366f1;
}

.filter-button.active {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-color: #6366f1;
    color: #fff;
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.3);
}

/* Tours Grid */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

/* Enhanced Tour Cards */
.tour-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    backdrop-filter: blur(10px);
}

.tour-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #06b6d4);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tour-card:hover::before {
    opacity: 1;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
}

.tour-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tour-card:hover .tour-image img {
    transform: scale(1.05);
}

.difficulty-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.difficulty-badge.beginner {
    background: rgba(34, 197, 94, 0.9);
    color: #fff;
}

.difficulty-badge.intermediate {
    background: rgba(251, 146, 60, 0.9);
    color: #fff;
}

.difficulty-badge.advanced {
    background: rgba(239, 68, 68, 0.9);
    color: #fff;
}

.difficulty-badge.expert {
    background: rgba(147, 51, 234, 0.9);
    color: #fff;
}

.duration-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(15, 23, 42, 0.8);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.tour-content {
    padding: 2rem;
}

.tour-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.tour-card:hover .tour-content h3 {
    color: #6366f1;
}

.tour-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 1rem;
}

.tour-location i {
    color: #6366f1;
    font-size: 0.9rem;
}

.tour-content p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.tour-features {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 1.5rem;
}

.tour-features span {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: #475569;
    font-size: 0.9rem;
    font-weight: 500;
}

.tour-features i {
    color: #6366f1;
    width: 16px;
    text-align: center;
}

.tour-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 1.5rem;
}

.tour-btn {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.tour-btn:hover {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    color: #fff;
}

/* Responsive Design for Tours */
@media (max-width: 1024px) {
    .tours-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .tours-grid-section {
        padding: 4rem 0;
    }
    
    .tours-filter {
        padding: 0 0 3rem 0;
    }
    
    .filter-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .tour-image {
        height: 220px;
    }
    
    .tour-content {
        padding: 1.5rem;
    }
    
    .tour-content h3 {
        font-size: 1.3rem;
    }
    
    .tour-features {
        gap: 0.5rem;
    }
    
    .tour-features span {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .tours-filter {
        gap: 1rem;
    }
    
    .filter-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .difficulty-badge,
    .duration-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .tour-btn {
        width: 100%;
        padding: 1rem 2rem;
    }
}

/* Tour Planning Section */
.tour-planning {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.tour-planning::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.tour-planning h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 2;
}

.tour-planning h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f59e0b);
    border-radius: 2px;
}

.planning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.planning-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.planning-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.planning-card:hover::before {
    opacity: 1;
}

.planning-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

.planning-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.planning-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(-45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.planning-card:hover .planning-icon::before {
    animation: shine 0.6s ease-in-out;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(-45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) translateY(100%) rotate(-45deg); opacity: 0; }
}

.planning-card:hover .planning-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    transform: scale(1.1);
}

.planning-icon i {
    font-size: 2rem;
    color: #3b82f6;
    transition: all 0.3s ease;
}

.planning-card:hover .planning-icon i {
    color: #1d4ed8;
    transform: scale(1.1);
}

.planning-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.planning-card:hover h3 {
    color: #1d4ed8;
}

.planning-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* Upcoming Trips Styles */
.trips-section {
    padding: 4rem 0;
    background: #fafbfc;
}

.trips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.trip-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.trip-card.featured {
    border: 2px solid #ff6b35;
    transform: scale(1.02);
}

.trip-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.15);
}

.trip-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.trip-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.trip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.trip-card:hover .trip-image img {
    transform: scale(1.05);
}

.trip-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #ff6b35, #f59e0b);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.trip-difficulty {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

/* Difficulty Badge Colors */
.trip-difficulty {
    background: rgba(107, 114, 128, 0.9);
    color: #fff;
}

/* Specific difficulty colors - will be applied via JavaScript */
.difficulty-beginner {
    background: rgba(34, 197, 94, 0.9) !important;
}

.difficulty-moderate {
    background: rgba(245, 158, 11, 0.9) !important;
}

.difficulty-advanced {
    background: rgba(239, 68, 68, 0.9) !important;
}

.difficulty-expert {
    background: rgba(139, 69, 19, 0.9) !important;
}

.trip-content {
    padding: 2rem;
}

.trip-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.trip-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.3;
}

.trip-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
    white-space: nowrap;
}

.trip-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.trip-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #64748b;
}

.trip-meta i {
    color: #3b82f6;
    width: 16px;
    text-align: center;
}

.trip-content > p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.trip-highlights {
    margin-bottom: 1.5rem;
}

.trip-highlights h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.trip-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trip-highlights li {
    padding: 0.3rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.trip-highlights li::before {
    /* Use a reliable Unicode bullet to avoid mojibake */
    content: "\2022";
    color: #474645;
    font-weight: bold;
    position: absolute;
    left: 0;
    line-height: 1;
}

.trip-includes {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.trip-includes h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
}

.includes-grid span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #475569;
}

.includes-grid i {
    color: #22c55e;
    font-size: 0.8rem;
}

.trip-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #fff;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 120px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #64748b;
    padding: 0.875rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 120px;
}

.btn-secondary:hover {
    border-color: #3b82f6;
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.05);
}

/* Booking Info Section */
.booking-info {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    position: relative;
}

.booking-info::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.booking-info h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3.5rem;
    position: relative;
}

.booking-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.booking-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.booking-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b5cf6, #3b82f6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.booking-card:hover::before {
    opacity: 1;
}

.booking-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.15);
}

.booking-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.booking-card:hover .booking-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
    transform: scale(1.1);
}

.booking-icon i {
    font-size: 2rem;
    color: #8b5cf6;
    transition: all 0.3s ease;
}

.booking-card:hover .booking-icon i {
    color: #7c3aed;
    transform: scale(1.1);
}

.booking-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.booking-card:hover h3 {
    color: #7c3aed;
}

.booking-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* Trip Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.close-modal {
    color: #64748b;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.close-modal:hover {
    color: #1e293b;
}

/* Equipment Selection Guide */
.equipment-guide {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.equipment-guide::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.equipment-guide h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 2;
}

.equipment-guide h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f59e0b);
    border-radius: 2px;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.guide-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.guide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.guide-card:hover::before {
    opacity: 1;
}

.guide-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

.guide-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.guide-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(-45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.guide-card:hover .guide-icon::before {
    animation: shine 0.6s ease-in-out;
}

.guide-card:hover .guide-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    transform: scale(1.1);
}

.guide-icon i {
    font-size: 2rem;
    color: #3b82f6;
    transition: all 0.3s ease;
}

.guide-card:hover .guide-icon i {
    color: #1d4ed8;
    transform: scale(1.1);
}

.guide-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.guide-card:hover h3 {
    color: #1d4ed8;
}

.guide-card > p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.guide-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guide-card li {
    padding: 0.5rem 0;
    color: #475569;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.guide-card li::before {
    content: '*';
    color: #ff6b35;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.guide-card:hover li {
    color: #1e293b;
}

/* Equipment Tips Section */
.equipment-tips {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #f8fafc 100%);
}

.equipment-tips h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3.5rem;
    position: relative;
}

.equipment-tips h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #8b5cf6, #3b82f6);
    border-radius: 2px;
}

.tips-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tips-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.tips-text > p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.tip-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    border-left: 4px solid #8b5cf6;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    transition: all 0.3s ease;
}

.tip-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.1);
}

.tip-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tip-item h4 i {
    color: #22c55e;
    font-size: 1rem;
}

.tip-item p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.tips-image {
    position: relative;
}

.tips-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.1);
    transition: transform 0.3s ease;
}

.tips-image:hover img {
    transform: scale(1.02);
}

/* Seven Summits - Lessons Section */
/* RTL overrides for About Journey Timeline (keep center line; right-align text only) */
body[dir="rtl"] .journey-timeline .timeline {
  padding-left: 0;
  padding-right: 0;
}
body[dir="rtl"] .journey-timeline .timeline::before {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}
body[dir="rtl"] .journey-timeline .timeline-item {
  padding-left: 0;
  padding-right: 0;
}
body[dir="rtl"] .journey-timeline .timeline-content {
  text-align: right;
}
/* Ensure alternating sides in RTL as well */
body[dir="rtl"] .journey-timeline .timeline-item:nth-child(odd) {
  flex-direction: row-reverse !important;
}
body[dir="rtl"] .journey-timeline .timeline-item:nth-child(even) {
  flex-direction: row !important;
}

/* Force container flow to LTR so alternation logic matches desktop layout */
html[dir="rtl"] .journey-timeline .timeline {
  direction: ltr;
}
/* Keep card text in RTL */
html[dir="rtl"] .journey-timeline .timeline .timeline-content {
  direction: rtl;
}
@media (max-width: 768px) {
  body[dir="rtl"] .journey-timeline .timeline::before {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  body[dir="rtl"] .journey-timeline .timeline-item {
    padding-left: 0;
    padding-right: 0;
  }
  body[dir="rtl"] .journey-timeline .timeline-year {
    left: auto;
    right: auto;
    margin: 0 1rem;
  }
  body[dir="rtl"] .journey-timeline .timeline-content {
    margin-left: 0;
    margin-right: 0;
  }
}

.summit-lessons {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b  50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.summit-lessons::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 150%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255, 107, 53, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.summit-lessons::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.summit-lessons h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.summit-lessons h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f59e0b, #3b82f6);
    border-radius: 2px;
}

.summit-lessons .container > p {
    text-align: center;
    color: #cbd5e1;
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 5rem;
    position: relative;
    z-index: 2;
}

.lessons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.lesson-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.lesson-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f59e0b, #3b82f6, #8b5cf6);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lesson-card:hover::before {
    opacity: 1;
}

.lesson-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.lesson-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(59, 130, 246, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.lesson-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: rotate(-45deg) translate(-50%, -50%);
    transition: all 0.6s ease;
    opacity: 0;
}

.lesson-card:hover .lesson-icon::before {
    animation: shine 0.8s ease-in-out;
}

.lesson-card:hover .lesson-icon {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(59, 130, 246, 0.3));
    transform: scale(1.1) rotate(5deg);
}

.lesson-icon i {
    font-size: 2.5rem;
    color: #fff;
    transition: all 0.4s ease;
}

.lesson-card:hover .lesson-icon i {
    color: #fbbf24;
    transform: scale(1.15);
}

.lesson-card h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.lesson-card:hover h3 {
    color: #fbbf24;
}

.lesson-card p {
    color: #cbd5e1;
    line-height: 1.8;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.lesson-card:hover p {
    color: #e2e8f0;
}

/* Responsive adjustments for lessons */
@media (max-width: 768px) {
    .summit-lessons {
        padding: 5rem 0;
    }
    
    .summit-lessons h2 {
        font-size: 2.5rem;
    }
    
    .lessons-grid {
        gap: 2rem;
    }
    
    .lesson-card {
        padding: 2rem 1.5rem;
    }
    
    .lesson-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 2rem;
    }
    
    .lesson-icon i {
        font-size: 2rem;
    }
    
    .lesson-card h3 {
        font-size: 1.5rem;
    }
}

/* Shine animation for lesson cards */
@keyframes shine {
    0% {
        transform: rotate(-45deg) translate(-200%, -200%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: rotate(-45deg) translate(200%, 200%);
        opacity: 0;
    }
}

/* Collection Highlights Section */
.collection-facts {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    position: relative;
    overflow: hidden;
}

.collection-facts::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 120%;
    height: 160%;
    background: radial-gradient(ellipse, rgba(245, 158, 11, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.collection-facts::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 100%;
    height: 180%;
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.03) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
}

.collection-facts h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.collection-facts h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #ff6b35, #3b82f6);
    border-radius: 2px;
}

.collection-facts .container > p {
    text-align: center;
    color: #64748b;
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto 5rem;
    position: relative;
    z-index: 2;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.fact-card {
    background: #fff;
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.fact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #ff6b35, #3b82f6, #8b5cf6);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.fact-card:hover::before {
    opacity: 1;
}

.fact-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 80px rgba(15, 23, 42, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.fact-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2.5rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(59, 130, 246, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.fact-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(-45deg) translate(-50%, -50%);
    transition: all 0.6s ease;
    opacity: 0;
}

.fact-card:hover .fact-icon::before {
    animation: shine 0.8s ease-in-out;
}

.fact-card:hover .fact-icon {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.25), rgba(59, 130, 246, 0.25));
    transform: scale(1.15) rotate(-5deg);
}

.fact-icon i {
    font-size: 2.5rem;
    color: #3b82f6;
    transition: all 0.4s ease;
}

.fact-card:hover .fact-icon i {
    color: #f59e0b;
    transform: scale(1.1);
}

.fact-card h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.fact-card:hover h3 {
    color: #1d4ed8;
}

.fact-card p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.fact-card:hover p {
    color: #475569;
}

/* Responsive adjustments for collection facts */
@media (max-width: 768px) {
    .collection-facts {
        padding: 5rem 0;
    }
    
    .collection-facts h2 {
        font-size: 2.5rem;
    }
    
    .facts-grid {
        gap: 2rem;
    }
    
    .fact-card {
        padding: 2rem 1.5rem;
    }
    
    .fact-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 2rem;
    }
    
    .fact-icon i {
        font-size: 2rem;
    }
    
    .fact-card h3 {
        font-size: 1.5rem;
    }
}

/* Coin Collection Filter Enhancement */
.collection-filters {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #f8fafc 100%);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.filter-button {
    background: #fff;
    border: 2px solid rgba(226, 232, 240, 0.8);
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    color: #64748b;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.filter-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

.filter-button:hover::before {
    left: 100%;
}

.filter-button:hover {
    border-color: rgba(59, 130, 246, 0.4);
    color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.filter-button.active {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-color: #1d4ed8;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* Mountain Photography Insights */
.photography-tips {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.photography-tips::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -30%;
    width: 160%;
    height: 180%;
    background: radial-gradient(ellipse, rgba(34, 197, 94, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.photography-tips::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -25%;
    width: 120%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(168, 85, 247, 0.03) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
}

.photography-tips h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.photography-tips h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #22c55e, #10b981, #3b82f6);
    border-radius: 2px;
}

.photography-tips .container > p {
    text-align: center;
    color: #cbd5e1;
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 5rem;
    position: relative;
    z-index: 2;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.tip-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #22c55e, #10b981, #3b82f6, #a855f7);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tip-card:hover::before {
    opacity: 1;
}

.tip-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
}

.tip-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2.5rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(59, 130, 246, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tip-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(-45deg) translate(-50%, -50%);
    transition: all 0.6s ease;
    opacity: 0;
}

.tip-card:hover .tip-icon::before {
    animation: shine 0.8s ease-in-out;
}

.tip-card:hover .tip-icon {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.3), rgba(59, 130, 246, 0.3));
    transform: scale(1.15) rotate(10deg);
}

.tip-icon i {
    font-size: 2.5rem;
    color: #fff;
    transition: all 0.4s ease;
}

.tip-card:hover .tip-icon i {
    color: #22c55e;
    transform: scale(1.2);
}

.tip-card h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.tip-card:hover h3 {
    color: #22c55e;
}

.tip-card p {
    color: #cbd5e1;
    line-height: 1.8;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.tip-card:hover p {
    color: #e2e8f0;
}

/* Favorite Shots Section */
.favorite-shots {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.favorite-shots::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 100%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.favorite-shots h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.favorite-shots h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

.shots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.shot-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(15, 23, 42, 0.1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.shot-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.shot-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.shot-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.shot-info {
    padding: 2rem;
}

.shot-info h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.shot-card:hover .shot-info h4 {
    color: #1d4ed8;
}

.shot-info p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.shot-info p:last-child {
    margin-bottom: 0;
    font-style: italic;
    color: #475569;
    line-height: 1.7;
    margin-top: 1rem;
}

/* Responsive adjustments for photography sections */
@media (max-width: 768px) {
    .photography-tips {
        padding: 5rem 0;
    }
    
    .photography-tips h2,
    .favorite-shots h2 {
        font-size: 2.5rem;
    }
    
    .tips-grid {
        gap: 2rem;
    }
    
    .tip-card {
        padding: 2rem 1.5rem;
    }
    
    .tip-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 2rem;
    }
    
    .tip-icon i {
        font-size: 2rem;
    }
    
    .tip-card h3 {
        font-size: 1.5rem;
    }
    
    .shots-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .shot-image {
        height: 200px;
    }
    
    .shot-info {
        padding: 1.5rem;
    }
    
    .shot-info h4 {
        font-size: 1.3rem;
    }
}

/* Frequently Asked Questions */
.faq-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 140%;
    height: 160%;
    background: radial-gradient(ellipse, rgba(99, 102, 241, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -25%;
    width: 120%;
    height: 180%;
    background: radial-gradient(ellipse, rgba(16, 185, 129, 0.03) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
}

.faq-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #10b981);
    border-radius: 2px;
}

.faq-section .container > p {
    text-align: center;
    color: #64748b;
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 5rem;
    position: relative;
    z-index: 2;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #10b981);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 80px rgba(15, 23, 42, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
}

.faq-item h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 2rem;
}

.faq-item h4::before {
    content: '?';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #6366f1, #10b981);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.faq-item:hover h4 {
    color: #4338ca;
}

.faq-item:hover h4::before {
    background: linear-gradient(135deg, #4338ca, #059669);
    transform: translateY(-50%) scale(1.1);
}

.faq-item p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
    transition: color 0.3s ease;
    margin: 0;
}

.faq-item:hover p {
    color: #475569;
}

/* Enhanced FAQ accordion functionality */
.faq-item.expandable {
    cursor: pointer;
}

.faq-item.expandable h4::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #6366f1;
    transition: all 0.3s ease;
}

.faq-item.expandable.active h4::after {
    content: '*';
    transform: translateY(-50%) rotate(180deg);
}

.faq-item.expandable .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding-top 0.3s ease;
    padding-top: 0;
}

.faq-item.expandable.active .faq-answer {
    max-height: 200px;
    padding-top: 1.5rem;
}

/* Responsive adjustments for FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 5rem 0;
    }
    
    .faq-section h2 {
        font-size: 2.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .faq-item {
        padding: 2rem 1.5rem;
    }
    
    .faq-item h4 {
        font-size: 1.3rem;
        padding-left: 2.5rem;
    }
    
    .faq-item h4::before {
        width: 25px;
        height: 25px;
        font-size: 0.9rem;
    }
}

/* Enhanced Collection Gallery */
.collection-gallery {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.collection-gallery::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -15%;
    width: 130%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(99, 102, 241, 0.02) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

/* Enhanced Gallery Items */
.gallery-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #10b981, #6366f1);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.15);
    border-color: rgba(251, 146, 60, 0.3);
}

.coin-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

.coin-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover .coin-image img {
    transform: scale(1.1) rotate(5deg);
}

.coin-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(15, 23, 42, 0.8));
    color: #fff;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover .coin-overlay {
    transform: translateY(0);
}

.coin-overlay h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.coin-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.coin-info {
    padding: 2rem;
}

.coin-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.gallery-item:hover .coin-info h3 {
    color: #f59e0b;
}

.coin-details p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.coin-details strong {
    color: #1e293b;
    font-weight: 600;
}

/* Enhanced Collection Facts Section */
.collection-facts {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    position: relative;
    overflow: hidden;
}

.collection-facts::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 140%;
    height: 160%;
    background: radial-gradient(ellipse, rgba(251, 146, 60, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.collection-facts::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -25%;
    width: 120%;
    height: 180%;
    background: radial-gradient(ellipse, rgba(16, 185, 129, 0.08) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
}

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

.collection-facts h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
}

.collection-facts h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #10b981);
    border-radius: 2px;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.fact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.fact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #10b981, #6366f1);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.fact-card:hover::before {
    opacity: 1;
}

.fact-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(251, 146, 60, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.fact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #f59e0b, #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.fact-card:hover .fact-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, #10b981, #6366f1);
}

.fact-icon i {
    font-size: 2rem;
    color: #fff;
}

.fact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.fact-card:hover h3 {
    color: #f59e0b;
}

.fact-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
    transition: color 0.3s ease;
}

.fact-card:hover p {
    color: rgba(255, 255, 255, 0.95);
}

/* Responsive Design for Collection Page */
@media (max-width: 1024px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2.5rem;
    }
    
    .facts-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .collection-intro {
        padding: 5rem 0;
    }
    
    .intro-text h2 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .collection-gallery {
        padding: 5rem 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .coin-image {
        height: 200px;
    }
    
    .coin-info {
        padding: 1.5rem;
    }
    
    .collection-facts {
        padding: 5rem 0;
    }
    
    .collection-facts h2 {
        font-size: 2.5rem;
    }
    
    .facts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .fact-card {
        padding: 2rem 1.5rem;
    }
    
    .fact-icon {
        width: 60px;
        height: 60px;
    }
    
    .fact-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .intro-stats {
        padding: 2rem 1.5rem;
    }
    
    .filter-buttons {
        gap: 1rem;
    }
    
    .filter-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .coin-image img {
        padding: 1rem;
    }
}

/* Enhanced Camera Collection Styles */
.camera-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

.camera-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover .camera-image img {
    transform: scale(1.08) rotate(-2deg);
}

.camera-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(15, 23, 42, 0.85));
    color: #fff;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover .camera-overlay {
    transform: translateY(0);
}

.camera-overlay h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.camera-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.camera-info {
    padding: 2rem;
}

.camera-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.gallery-item:hover .camera-info h3 {
    color: #6366f1;
}

.camera-details p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.camera-details strong {
    color: #1e293b;
    font-weight: 600;
}

/* Photography Tips Section */
.photography-tips {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    position: relative;
    overflow: hidden;
}

.photography-tips::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 140%;
    height: 160%;
    background: radial-gradient(ellipse, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.photography-tips::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -25%;
    width: 120%;
    height: 180%;
    background: radial-gradient(ellipse, rgba(16, 185, 129, 0.08) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
}

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

.photography-tips h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
}

.photography-tips h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #10b981);
    border-radius: 2px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.tip-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #10b981, #f59e0b);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tip-card:hover::before {
    opacity: 1;
}

.tip-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tip-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #6366f1, #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.tip-card:hover .tip-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, #10b981, #f59e0b);
}

.tip-icon i {
    font-size: 2rem;
    color: #fff;
}

.tip-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.tip-card:hover h3 {
    color: #6366f1;
}

.tip-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
    transition: color 0.3s ease;
}

.tip-card:hover p {
    color: rgba(255, 255, 255, 0.95);
}

/* Favorite Shots Section */
.favorite-shots {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.favorite-shots::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -15%;
    width: 130%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(147, 51, 234, 0.02) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

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

.favorite-shots h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    position: relative;
}

.favorite-shots h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #9333ea, #06b6d4);
    border-radius: 2px;
}

.shots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 4rem;
    margin-top: 5rem;
}

.shot-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.shot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #9333ea, #06b6d4, #10b981);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.shot-card:hover::before {
    opacity: 1;
}

.shot-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.15);
    border-color: rgba(147, 51, 234, 0.3);
}

.shot-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.shot-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.shot-card:hover .shot-image img {
    transform: scale(1.05);
}

.shot-info {
    padding: 2.5rem;
}

.shot-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.shot-card:hover .shot-info h4 {
    color: #9333ea;
}

.shot-info p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.shot-info p:last-child {
    margin-bottom: 0;
    font-style: italic;
    color: #475569;
}

.shot-info strong {
    color: #1e293b;
    font-weight: 600;
}

/* Responsive Design for Camera Collection */
@media (max-width: 1024px) {
    .camera-image {
        height: 260px;
    }
    
    .shots-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .tips-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .camera-image {
        height: 220px;
    }
    
    .camera-info {
        padding: 1.5rem;
    }
    
    .photography-tips {
        padding: 5rem 0;
    }
    
    .photography-tips h2 {
        font-size: 2.5rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .tip-card {
        padding: 2rem 1.5rem;
    }
    
    .tip-icon {
        width: 60px;
        height: 60px;
    }
    
    .tip-icon i {
        font-size: 1.5rem;
    }
    
    .favorite-shots {
        padding: 5rem 0;
    }
    
    .favorite-shots h2 {
        font-size: 2.5rem;
    }
    
    .shots-grid {
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .shot-image {
        height: 250px;
    }
    
    .shot-info {
        padding: 2rem;
    }
    
    .shot-info h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .camera-image img {
        padding: 1rem;
    }
    
    .shot-info {
        padding: 1.5rem;
    }
    
    .shot-image {
        height: 200px;
    }
}

/* Seven Summits Page Styles */
.summits-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b  50%, #334155 100%);
    color: white;
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.summits-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -15%;
    width: 130%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.summits-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.summits-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.summits-intro {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.summits-intro::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 130%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(16, 185, 129, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
    align-items: start;
}

.intro-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
    position: relative;
}

.intro-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #10b981);
    border-radius: 2px;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.progress-stats {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.1);
}

.progress-circle {
    position: relative;
    margin-bottom: 2rem;
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.progress-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
}

.progress-label {
    font-size: 0.9rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.next-targets h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.next-targets ul {
    list-style: none;
    padding: 0;
}

.next-targets li {
    color: #64748b;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.next-targets li::before {
    content: '*';
    position: absolute;
    left: 0;
}

.summits-grid-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    position: relative;
}

.summits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.summit-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.summit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #10b981, #f59e0b);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.summit-card:hover::before {
    opacity: 1;
}

.summit-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.summit-card.completed {
    border-left: 5px solid #10b981;
}

.summit-card.planned {
    border-left: 5px solid #f59e0b;
    opacity: 0.9;
}

.summit-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.summit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.summit-card:hover .summit-image img {
    transform: scale(1.08) rotate(1deg);
}

.completion-badge, .planning-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #10b981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.planning-badge {
    background: #f59e0b;
}

.summit-elevation {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.summit-info {
    padding: 2.5rem;
}

.summit-header {
    margin-bottom: 2rem;
}

.summit-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.summit-card:hover .summit-header h3 {
    color: #3b82f6;
}

.summit-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.95rem;
}

.summit-location i {
    color: #ef4444;
}

.summit-stats {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(248, 250, 252, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat .label {
    font-weight: 600;
    color: #475569;
    font-size: 0.9rem;
}

.stat .value {
    font-weight: 700;
    color: #1e293b;
    font-size: 0.95rem;
}

.summit-info > p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}

.summit-challenges h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.summit-challenges ul {
    list-style: none;
    padding: 0;
}

.summit-challenges li {
    color: #64748b;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.summit-challenges li::before {
    content: '*';
    position: absolute;
    left: 0;
}

.summit-timeline {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden; /* prevent ::before from creating horizontal scroll */
}

.summit-timeline::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -15%;
    width: 130%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(239, 68, 68, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.summit-timeline h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    position: relative;
}

.summit-timeline h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ef4444, #f59e0b);
    border-radius: 2px;
}

.summit-timeline .timeline {
    position: relative;
    margin-top: 5rem;
    padding-left: 2rem;
}

.summit-timeline .timeline::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #3b82f6, #10b981, #f59e0b, #ef4444);
}

.summit-timeline .timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 3rem;
}

.summit-timeline .timeline-marker {
    position: absolute;
    left: -0.75rem;
    top: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: #ef4444; /* default marker color */
}

.summit-timeline .timeline-item.completed .timeline-marker {
    background: #10b981;
}

.summit-timeline .timeline-item.planned .timeline-marker {
    background: #f59e0b;
}

/* Alias to support markup using 'upcoming' */
.summit-timeline .timeline-item.upcoming .timeline-marker {
    background: #f59e0b;
}

.summit-timeline .timeline-content {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.summit-timeline .timeline-content:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
}

.summit-timeline .timeline-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.summit-timeline .timeline-content p {
    color: #64748b;
    line-height: 1.7;
}

/* RTL overrides for Summit Timeline */
body[dir="rtl"] .summit-timeline .timeline {
    padding-right: 2rem;
    padding-left: 0;
}
body[dir="rtl"] .summit-timeline .timeline::before {
    right: 1rem;
    left: auto;
}
body[dir="rtl"] .summit-timeline .timeline-item {
    padding-right: 3rem;
    padding-left: 0;
}
body[dir="rtl"] .summit-timeline .timeline-marker {
    right: -0.75rem;
    left: auto;
}
body[dir="rtl"] .summit-timeline .timeline-content:hover {
    transform: translateX(-10px);
}

/* Keep alternating layout centered but mirror text flow in RTL */
html[dir="rtl"] .summit-timeline .timeline {
    direction: ltr; /* preserve left/right alternation & center line */
}
html[dir="rtl"] .summit-timeline .timeline .timeline-content {
    direction: rtl; /* keep Arabic text direction */
    text-align: right;
}

/* RTL bullet alignment for challenges list */
body[dir="rtl"] .summit-challenges li {
    padding-right: 1.5rem;
    padding-left: 0;
}
body[dir="rtl"] .summit-challenges li::before {
    right: 0;
    left: auto;
}

/* Mobile adjustments for RTL */
@media (max-width: 768px) {
  body[dir="rtl"] .summit-timeline .timeline {
      padding-right: 1.5rem;
  }
  body[dir="rtl"] .summit-timeline .timeline-item {
      padding-right: 2.5rem;
  }
  body[dir="rtl"] .summit-timeline .timeline-marker {
      right: 10px !important;
      left: auto !important;
  }
  body[dir="rtl"] .summit-timeline .timeline-content {
      padding: 1.5rem;
  }
}

.summit-lessons {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    position: relative;
}

.summit-lessons::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 130%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(147, 51, 234, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.summit-lessons h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.summit-lessons h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #9333ea, #06b6d4);
    border-radius: 2px;
}

.lessons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.lesson-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.lesson-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #9333ea, #06b6d4, #10b981, #f59e0b);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lesson-card:hover::before {
    opacity: 1;
}

.lesson-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.lesson-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #9333ea, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.lesson-card:hover .lesson-icon {
    transform: scale(1.1) rotate(10deg);
}

.lesson-icon i {
    font-size: 2rem;
    color: white;
}

.lesson-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.lesson-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Responsive Design for Seven Summits */
@media (max-width: 1024px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .summits-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .lessons-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .summits-hero {
        padding: 6rem 0 4rem;
    }
    
    .summits-hero h1 {
        font-size: 3rem;
    }
    
    .summits-hero p {
        font-size: 1.1rem;
    }
    
    .summits-intro, .summits-grid-section, .summit-timeline, .summit-lessons {
        padding: 5rem 0;
    }
    
    .intro-text h2 {
        font-size: 2.3rem;
    }
    
    .summit-timeline h2, .summit-lessons h2 {
        font-size: 2.5rem;
    }
    
    .summit-card {
        margin: 0 1rem;
    }
    
    .summit-image {
        height: 220px;
    }
    
    .summit-info {
        padding: 2rem;
    }
    
    .progress-stats {
        padding: 2rem;
    }
    
    .summit-timeline .timeline {
        padding-left: 1.5rem;
    }
    
    .summit-timeline .timeline-item {
        padding-left: 2.5rem;
    }
    
    .summit-timeline .timeline-content {
        padding: 1.5rem;
    }
    
    .lesson-card {
        padding: 2.5rem 1.5rem;
    }
    
    .lesson-icon {
        width: 70px;
        height: 70px;
    }
    
    .lesson-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .summits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .summit-card {
        margin: 0;
    }
    
    .summit-image {
        height: 180px;
    }
    
    .summit-info {
        padding: 1.5rem;
    }
    
    .summit-header h3 {
        font-size: 1.5rem;
    }
    
    .lessons-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Summit Stats Section - Enhanced */
section.summit-stats {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

section.summit-stats::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -15%;
    width: 130%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

section.summit-stats .container {
    position: relative;
    z-index: 2;
}

section.summit-stats h2 {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    position: relative;
}

section.summit-stats h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #10b981, #f59e0b);
    border-radius: 2px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin: 5rem 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #10b981, #f59e0b, #ef4444);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.4);
}

.stat-icon i {
    font-size: 2rem;
    color: white;
}

.stat-info {
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsletter-signup {
    text-align: center;
    margin-top: 6rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    position: relative;
}

.newsletter-signup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #9333ea, #06b6d4);
    opacity: 0.7;
}

.newsletter-signup h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 250px;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 140px;
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, #2563eb, #059669);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Responsive Design for Summit Stats */
@media (max-width: 1024px) {
    .stats-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 4rem 0;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .newsletter-form input[type="email"],
    .newsletter-form button {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 768px) {
    section.summit-stats {
        padding: 6rem 0;
    }
    
    section.summit-stats h2 {
        font-size: 2.5rem;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 1.5rem;
        gap: 1.5rem;
    }
    
    .stat-icon {
        width: 70px;
        height: 70px;
    }
    
    .stat-icon i {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .newsletter-signup {
        margin-top: 4rem;
        padding: 2rem;
    }
    
    .newsletter-signup h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .stat-card {
        padding: 2rem 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .newsletter-form input[type="email"] {
        padding: 0.8rem 1.2rem;
    }
    
    .newsletter-form button {
        padding: 0.8rem 1.5rem;
    }
}

/* Equipment Styles */
.equipment-section {
    padding: 2rem 0 4rem;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.equipment-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.equipment-image {
    height: 200px;
    overflow: hidden;
}

.equipment-info {
    padding: 1.5rem;
}

.equipment-category {
    color: #ff6b35;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.equipment-specs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
}

/* Summit Cards */
.summits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.summit-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.summit-card.completed {
    border: 3px solid #28a745;
}

.summit-card.planned {
    border: 3px solid #ff6b35;
}

.summit-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.completion-badge,
.planning-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #28a745;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.planning-badge {
    background: #ff6b35;
}

.summit-elevation {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

/* Contact Form Styles */
.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.submit-button {
    background: #ff6b35;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

/* Timeline Styles */
.legacy-timeline {
    position: relative;
    padding: 2rem 0;
}

.legacy-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
    transform: translateX(-50%);
}

.legacy-timeline .timeline-item {
    position: relative;
    margin-bottom: 2rem;
    width: 50%;
}

.legacy-timeline .timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 2rem;
}

.legacy-timeline .timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 2rem;
}

.legacy-timeline .timeline-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #ff6b35;
    border-radius: 50%;
    top: 0;
}

.legacy-timeline .timeline-item:nth-child(odd) .timeline-marker {
    right: -10px;
}

.legacy-timeline .timeline-item:nth-child(even) .timeline-marker {
    left: -10px;
}

.legacy-timeline .timeline-item.completed .timeline-marker {
    background: #28a745;
}

.legacy-timeline .timeline-content {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .intro-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .legacy-timeline::before {
        left: 20px;
    }
    
    .legacy-timeline .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 3rem !important;
        padding-right: 0 !important;
    }
    
    .legacy-timeline .timeline-marker {
        left: 10px !important;
        right: auto !important;
    }
    
    .summits-grid {
        grid-template-columns: 1fr;
    }
}

/* Enhanced Page Designs */

/* Visited Countries Enhancements */
.countries-list {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.countries-list .fact-card {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 4px solid transparent;
  /* Contrast override: ensure readable text on light background */
  background: #ffffff;
  backdrop-filter: none;
  border: 1px solid #e2e8f0;
}

.countries-list .fact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-left-color: #0ea5e9;
}

.countries-list .fact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #67e8f9, #a78bfa);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.countries-list .fact-card:hover::before {
  transform: scaleX(1);
}

.countries-list .fact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #67e8f9, #a78bfa);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(103, 232, 249, 0.3);
}

/* Readable text colors for countries cards */
.countries-list .fact-card h3 { color: #1e293b; }
.countries-list .fact-card p { color: #475569; }

/* RTL adjustments */
html[dir="rtl"] .countries-list .fact-card { text-align: right; }
html[dir="rtl"] .countries-list .fact-card { border-left: none; border-right: 4px solid transparent; }
html[dir="rtl"] .countries-list .fact-card:hover { border-right-color: #0ea5e9; }

/* Fixed-size cards with inner scroll for Visited Countries */
.countries-list .country-card {
  display: flex;
  flex-direction: column;
  height: 360px; /* fixed card height */
  min-height: 360px;
}

.countries-list .country-card-image {
  margin-bottom: 10px;
  border-radius: 12px;
  overflow: hidden;
  flex: 0 0 160px; /* fixed image height */
}

.countries-list .country-card-image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.countries-list .country-card-icon {
  margin-bottom: 10px;
}

.countries-list .country-card-content {
  flex: 1 1 auto;
  min-height: 0;           /* important for flex scroll areas */
  overflow-y: auto;         /* enable inner scroll when content is long */
  padding-right: 6px;       /* space for scrollbar */
}

/* Optional: subtle scrollbar styling */
.countries-list .country-card-content::-webkit-scrollbar { width: 8px; }
.countries-list .country-card-content::-webkit-scrollbar-track { background: rgba(226,232,240,0.4); border-radius: 8px; }
.countries-list .country-card-content::-webkit-scrollbar-thumb { background: rgba(100,116,139,0.6); border-radius: 8px; }

@media (max-width: 768px) {
  .countries-list .country-card { height: 320px; min-height: 320px; }
  .countries-list .country-card-image { flex-basis: 140px; }
  .countries-list .country-card-image img { height: 140px; }
}

/* Seven Wonders Enhancements */
.wonders-list {
  padding: 60px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #e2e8f0;
}

.wonders-list .fact-card {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: #e2e8f0;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.wonders-list .fact-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transition: left 0.8s ease;
}

.wonders-list .fact-card:hover::after {
  left: 100%;
}

.wonders-list .fact-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  border-color: rgba(103, 232, 249, 0.4);
}

.wonders-list .fact-card h3 {
  color: #67e8f9;
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.wonders-list .fact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 20px;
  font-size: 1.5rem;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
  transition: all 0.3s ease;
}

.wonders-list .fact-card:hover .fact-icon {
  transform: rotate(360deg) scale(1.1);
}

/* Banknotes Collection Enhancements */
.collection-gallery {
  padding: 60px 0;
  background: #f8fafc;
}

.gallery-item {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #10b981, #059669);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.gallery-item:hover::before {
  transform: scaleX(1);
}

.coin-info h3 {
  color: #0f172a;
  font-size: 1.25rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.coin-info h3::before {
  /* Remove emoji content that caused mojibake across devices */
  content: none;
}

.coin-details p {
  margin-bottom: 8px;
  line-height: 1.6;
}

.coin-details p strong {
  color: #059669;
  font-weight: 700;
}

/* Post-Retirement Climbing Enhancements */
.benefits-section,
.tips-section,
.experiences-section {
  padding: 60px 0;
}

.benefits-section {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.tips-section {
  background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%);
}

.experiences-section {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

/* Contrast overrides for Post-Retirement sections (improves readability) */
.benefits-section .fact-card,
.experiences-section .fact-card {
  background: #ffffff; /* solid white card on light background */
  backdrop-filter: none;
  border: 1px solid #e2e8f0;
}
.benefits-section .fact-card h3,
.experiences-section .fact-card h3 { color: #1e293b; }
.benefits-section .fact-card p,
.experiences-section .fact-card p { color: #475569; }

.tips-section .tip-card {
  background: #ffffff; /* solid card for yellow background */
  color: #1f2937;
  border: 1px solid #e2e8f0;
}
.tips-section .tip-card h3 { color: #1e293b; }
.tips-section .tip-card p { color: #475569; }

/* RTL tweaks (keep consistent paddings/margins if needed) */
html[dir="rtl"] .benefits-section .fact-card,
html[dir="rtl"] .experiences-section .fact-card,
html[dir="rtl"] .tips-section .tip-card {
  text-align: right;
}

@media (max-width: 768px) {
  .benefits-section .fact-card,
  .experiences-section .fact-card,
  .tips-section .tip-card {
    padding: 1.5rem;
  }
}

.tip-card,
.experience-card {
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 4px solid transparent;
}

.tip-card:hover,
.experience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.benefits-section .fact-card:hover {
  border-left-color: #0ea5e9;
}

.tips-section .tip-card:hover {
  border-left-color: #f59e0b;
}

.experiences-section .experience-card:hover {
  border-left-color: #10b981;
}

/* Enhanced Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-in .fact-card,
.animate-in .gallery-item,
.animate-in .tip-card,
.animate-in .experience-card {
  animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-in .fact-icon {
  animation: fadeInScale 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

/* RTL Support for Enhanced Elements */
html[dir="rtl"] .countries-list .fact-card,
html[dir="rtl"] .tip-card,
html[dir="rtl"] .experience-card {
  border-left: none;
  border-right: 4px solid transparent;
}

html[dir="rtl"] .countries-list .fact-card:hover,
html[dir="rtl"] .benefits-section .fact-card:hover {
  border-right-color: #0ea5e9;
}

html[dir="rtl"] .tips-section .tip-card:hover {
  border-right-color: #f59e0b;
}

html[dir="rtl"] .experiences-section .experience-card:hover {
  border-right-color: #10b981;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .countries-list .fact-card:hover,
  .wonders-list .fact-card:hover,
  .gallery-item:hover,
  .tip-card:hover,
  .experience-card:hover {
    transform: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }
  
  .coin-info h3::before {
    font-size: 1.25rem;
  }
}

/* Adventures Slider Card (Homepage) */
.explore-card.adventures-slider-card {
  padding: 0;
}

.adventures-slider-link {
  display: block;
  position: relative;
  color: inherit;
  text-decoration: none;
}

.adventures-slider {
  position: relative;
  height: 250px;
  border-radius: 24px;
  overflow: hidden;
}

.adventures-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.adventures-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.adventures-slide.active {
  opacity: 1;
}

.adventures-slider-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0));
  color: #fff;
  pointer-events: none; /* Keep the whole card clickable via the link wrapper */
}

.adventures-slider-overlay h3 {
  margin: 0;
  font-size: 1.25rem;
  letter-spacing: 0.3px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-title-nav {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .hero-nav-arrows {
    order: -1;
  }
  
  .hero-nav-btn {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
  
  .adventures-slider {
    height: 220px;
  }
}

/* Hero Title with Navigation */
.hero-title-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.hero-nav-arrows {
  display: flex;
  gap: 1rem;
}

.hero-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: grid;
  place-items: center;
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.hero-nav-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 1);
  transform: scale(1.05);
}

/* Adventures Horizontal Carousel (multi-card) */
.adventures-carousel-section {
  margin-top: 3rem;
}

.adventures-carousel {
  position: relative;
}

.adventures-track-wrapper {
  overflow: hidden;
  position: relative;
  padding: 0.5rem 0; /* room for shadows */
}

.adventures-track .adventure-card:first-child {
  margin-left: 0;
}

.adventures-track-wrapper::before,
.adventures-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.adventures-track-wrapper::before {
  left: 0;
  background: transparent;
}

.adventures-track-wrapper::after {
  right: 0;
  background: transparent;
}

.adventures-track {
  display: flex;
  gap: 1.25rem;
  will-change: transform;
  transition: transform 0.6s ease;
  padding-left: 0;
}

.adventure-card {
  position: relative;
  flex: 0 0 clamp(240px, 24vw, 280px);
  height: clamp(280px, 28vw, 320px);
  overflow: hidden;
  border-radius: 12px;
  background: transparent;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  border: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Ensure all cards have same height regardless of position */
.adventure-card:first-child {
  height: clamp(280px, 28vw, 320px);
  background: transparent;
}

/* Ensure consistent button styling across all cards */
.adventure-card .cta {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  color: #fff !important;
}

.adventure-card:hover .cta {
  background: rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(255, 255, 255, 1) !important;
}

.adventure-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.5s ease;
}

.adventure-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 40px 120px rgba(2, 8, 23, 0.45);
}

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

.adventure-card-overlay {
  position: absolute;
  left: 16px; right: 16px; bottom: 16px;
  padding: 14px;
  background: transparent;
  border-radius: 10px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.adventure-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  opacity: 0.85;
  margin-bottom: 4px;
}

.adventure-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.adventure-card-overlay h4 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 10px;
  text-align: center;
}

.adventure-card-overlay .cta {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  align-self: center;
}

.adventure-card:hover .cta {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 1);
}

/* Remove old carousel nav buttons since we're using hero-nav-btn instead */

/* RTL adjustments */
html[dir="rtl"] .adventures-track-wrapper::before {
  left: auto; right: 0;
  background: linear-gradient(to left, rgba(15, 23, 42, 0.25), rgba(15, 23, 42, 0));
}

html[dir="rtl"] .adventures-track-wrapper::after {
  right: auto; left: 0;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.25), rgba(15, 23, 42, 0));
}

/* Responsive tweaks */
@media (max-width: 992px) {
  .adventure-card { flex-basis: clamp(220px, 38vw, 280px); height: clamp(260px, 38vw, 300px); }
}

@media (max-width: 600px) {
  .adventure-card { flex-basis: 80%; height: 280px; }
  
  .adventure-card-overlay {
    padding: 12px;
    left: 12px; right: 12px; bottom: 12px;
  }
  
  .adventure-card-overlay h4 {
    font-size: 0.85rem;
  }
}

