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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Google Sans', 'Product Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #202124;
    background-color: #ffffff;
    font-size: 14px;
    letter-spacing: 0.2px;
}

/* Navigation - Glassmorphism Style */
.navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 2px 16px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    z-index: 1000;
    height: 64px;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    animation: navSlideDown 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        0 4px 20px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateX(-50%) scale(0.98);
}

@keyframes navSlideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-100px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 32px;
    height: 100%;
}

.nav-brand {
    font-size: 22px;
    font-weight: 500;
    color: #4285f4;
    letter-spacing: -0.5px;
    font-family: 'Google Sans', sans-serif;
    text-shadow: 0 1px 2px rgba(66, 133, 244, 0.1);
    animation: brandGlow 3s ease-in-out infinite;
}

@keyframes brandGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 4px rgba(66, 133, 244, 0.3));
    }
    50% { 
        filter: drop-shadow(0 0 8px rgba(66, 133, 244, 0.5));
    }
}

.nav-links {
    display: flex;
    gap: 4px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #5f6368;
    font-weight: 500;
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: relative;
    letter-spacing: 0.25px;
    overflow: hidden;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(66, 133, 244, 0.1), transparent);
    transition: left 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.nav-links a:hover::before {
    left: 100%;
}

.nav-links a:hover {
    background: rgba(66, 133, 244, 0.08);
    color: #4285f4;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.2);
}

.nav-links a.active {
    color: #4285f4;
    background: rgba(66, 133, 244, 0.12);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.15);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 12px;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
}

.hamburger:hover {
    background: rgba(66, 133, 244, 0.08);
    transform: scale(1.05);
}

.hamburger span {
    width: 18px;
    height: 2px;
    background: #5f6368;
    margin: 2px 0;
    transition: 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    border-radius: 2px;
}

/* Hero Section - Enhanced with animations */
.hero {
    margin-top: 96px;
    position: relative;
    min-height: 100vh;
    height: auto;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 60px 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(66, 133, 244, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(52, 168, 83, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 40% 70%, rgba(251, 188, 4, 0.03) 0%, transparent 60%);
    animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { 
        opacity: 0.6;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.02);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #202124;
    max-width: 960px;
    padding: 0 24px;
    width: 100%;
    animation: heroContentSlide 1.2s cubic-bezier(0.4, 0.0, 0.2, 1);
}

@keyframes heroContentSlide {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(248, 249, 250, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(232, 234, 237, 0.8);
    border-radius: 20px;
    padding: 8px 16px;
    margin-bottom: 32px;
    font-size: 13px;
    font-weight: 500;
    color: #5f6368;
    letter-spacing: 0.5px;
    animation: badgeFloat 1.2s cubic-bezier(0.4, 0.0, 0.2, 1) 0.3s both;
}

@keyframes badgeFloat {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.badge-icon {
    font-size: 16px;
    animation: iconSpin 4s ease-in-out infinite;
}

@keyframes iconSpin {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(10deg) scale(1.1); }
    50% { transform: rotate(0deg) scale(1); }
    75% { transform: rotate(-10deg) scale(1.1); }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 400;
    margin-bottom: 24px;
    letter-spacing: -1px;
    line-height: 1.1;
    font-family: 'Google Sans', sans-serif;
    color: #202124;
}

.title-line {
    display: block;
    animation: titleSlideIn 1.2s cubic-bezier(0.4, 0.0, 0.2, 1) both;
}

.title-line:first-child {
    animation-delay: 0.6s;
}

.title-line.highlight {
    color: #4285f4;
    animation: titleSlideIn 1.2s cubic-bezier(0.4, 0.0, 0.2, 1) 0.8s both, 
               colorShift 3s ease-in-out infinite;
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes colorShift {
    0%, 100% { color: #4285f4; }
    25% { color: #34a853; }
    50% { color: #fbbc04; }
    75% { color: #ea4335; }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    font-weight: 400;
    margin-bottom: 40px;
    color: #5f6368;
    line-height: 1.6;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.25px;
    animation: subtitleFade 1.2s cubic-bezier(0.4, 0.0, 0.2, 1) 1s both;
}

@keyframes subtitleFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 56px;
    flex-wrap: wrap;
    animation: ctaSlideUp 1.2s cubic-bezier(0.4, 0.0, 0.2, 1) 1.2s both;
}

@keyframes ctaSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-primary, .cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 24px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    border: 1px solid #dadce0;
    text-decoration: none;
    min-width: 160px;
    justify-content: center;
    position: relative;
    letter-spacing: 0.25px;
    overflow: hidden;
}

.cta-primary {
    background: #4285f4;
    color: #ffffff;
    border-color: #4285f4;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    background: #3367d6;
    border-color: #3367d6;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.3);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: #5f6368;
    border-color: rgba(218, 220, 224, 0.8);
}

.cta-secondary:hover {
    background: rgba(248, 249, 250, 0.95);
    border-color: #bdc1c6;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Journey Preview - Enhanced Cards */
/* Journey Preview - Enhanced Cards for 6 items */
.hero-journey-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
    animation: previewSlideUp 1.2s cubic-bezier(0.4, 0.0, 0.2, 1) 1.4s both;
}

@keyframes previewSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.journey-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(232, 234, 237, 0.8);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    min-width: 120px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: itemStagger 0.8s cubic-bezier(0.4, 0.0, 0.2, 1) both;
}

.journey-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(66, 133, 244, 0.1), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.journey-item:hover::before {
    left: 100%;
}

.journey-item:hover {
    border-color: rgba(66, 133, 244, 0.5);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 24px rgba(66, 133, 244, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.journey-icon {
    font-size: 2rem;
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.journey-item:hover .journey-icon {
    transform: scale(1.15) rotate(5deg);
}

.journey-text {
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    color: #5f6368;
    letter-spacing: 0.25px;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    line-height: 1.2;
}

.journey-item:hover .journey-text {
    color: #4285f4;
    font-weight: 600;
    transform: translateY(-1px);
}

/* Staggered animations for 6 journey items */
.journey-item:nth-child(1) { animation-delay: 1.5s; }
.journey-item:nth-child(2) { animation-delay: 1.6s; }
.journey-item:nth-child(3) { animation-delay: 1.7s; }
.journey-item:nth-child(4) { animation-delay: 1.8s; }
.journey-item:nth-child(5) { animation-delay: 1.9s; }
.journey-item:nth-child(6) { animation-delay: 2.0s; }

@keyframes itemStagger {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Enhanced Mobile Responsive for 6 items */
@media (max-width: 768px) {
    .hero-journey-preview {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        max-width: 400px;
    }
    
    .journey-item {
        min-width: 100px;
        padding: 16px 12px;
        gap: 8px;
    }
    
    .journey-icon {
        font-size: 1.6rem;
    }
    
    .journey-text {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .hero-journey-preview {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        max-width: 280px;
    }
    
    .journey-item {
        min-width: 85px;
        padding: 14px 10px;
        gap: 6px;
    }
    
    .journey-icon {
        font-size: 1.4rem;
    }
    
    .journey-text {
        font-size: 10px;
        line-height: 1.1;
    }
}

/* For very small screens - stack vertically */
@media (max-width: 320px) {
    .hero-journey-preview {
        grid-template-columns: 1fr;
        gap: 8px;
        max-width: 200px;
    }
    
    .journey-item {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        padding: 12px 16px;
        gap: 12px;
        min-width: auto;
    }
    
    .journey-text {
        font-size: 12px;
        text-align: left;
    }
}

/* Content Sections - Enhanced Animations */
.content-wrapper {
    max-width: 720px;
    margin: 0 auto;
    padding: 32px 24px;
}

.section {
    margin-bottom: 32px;
    opacity: 1; /* Changed from 0 to 1 - fallback for no JS */
    transform: translateY(0); /* Changed from translateY(30px) to 0 */
    transition: all 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* Only apply initial hidden state if JS is enabled */
.js-enabled .section {
    opacity: 0;
    transform: translateY(30px);
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Timeline - Enhanced with Smooth Scrolling */
.timeline {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

.timeline-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(232, 234, 237, 0.8);
    margin-bottom: 32px;
    overflow: hidden;
    opacity: 1; /* Always visible */
    transform: translateY(0) scale(1); /* No animation offset */
    transition: all 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4285f4, #34a853, #fbbc04, #ea4335);
    opacity: 1; /* Always visible */
    transition: opacity 0.5s ease;
}

.timeline-item:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: rgba(66, 133, 244, 0.4);
}

.timeline-date {
    position: static;
    transform: none;
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.1), rgba(52, 168, 83, 0.1));
    color: #4285f4;
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(232, 234, 237, 0.8);
}

.timeline-content {
    width: 100%;
    padding: 24px;
    margin: 0 !important;
    background: transparent;
    box-shadow: none;
    border: none;
    border-radius: 0;
}

.timeline-content h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #202124;
    font-family: 'Google Sans', sans-serif;
}

.timeline-content p {
    color: #5f6368;
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 15px;
    letter-spacing: 0.1px;
}

.photo-placeholder {
    margin-top: 16px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: relative;
}

.photo-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.photo-placeholder:hover::before {
    opacity: 1;
}

.photo-placeholder:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.timeline-photo {
    width: 100%;
  
    object-fit: cover;
    border-radius: 12px;
    background-color: #f8f9fa;
    border: 1px solid rgba(232, 234, 237, 0.8);
    transition: all 0.3s ease;
}

.photo-caption {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    color: #5f6368;
    font-style: normal;
    padding: 0 8px;
    letter-spacing: 0.1px;
}

/* Company Cards - Enhanced Glassmorphism */
.companies-section {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.8), rgba(232, 240, 254, 0.4));
    padding: 48px 0;
    position: relative;
}

.companies-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(66, 133, 244, 0.05) 0%, transparent 70%);
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.company-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(232, 234, 237, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    opacity: 1; /* Changed from 0 to 1 */
    transform: translateY(0); /* Changed from translateY(30px) */
}

.js-enabled .company-card {
    opacity: 0;
    transform: translateY(30px);
}

.company-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.company-card:hover {
    border-color: rgba(66, 133, 244, 0.4);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 32px rgba(66, 133, 244, 0.15);
}

.company-photo {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, #f8f9fa, rgba(232, 240, 254, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
}

.company-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #f8f9fa;
    border: 2px dashed rgba(218, 220, 224, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.company-photo:hover .company-image {
    border-color: #4285f4;
    transform: scale(1.05);
}

.company-content {
    padding: 24px;
}

.company-content h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #202124;
    font-family: 'Google Sans', sans-serif;
}

.company-content p {
    color: #5f6368;
    line-height: 1.6;
    font-size: 15px;
    letter-spacing: 0.1px;
}

/* Adventure Grid - Enhanced Cards */
.adventure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.adventure-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(232, 234, 237, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    opacity: 1; /* Changed from 0 to 1 */
    transform: translateY(0); /* Changed from translateY(30px) */
}

.js-enabled .adventure-card {
    opacity: 0;
    transform: translateY(30px);
}

.adventure-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.adventure-card:hover {
    border-color: rgba(52, 168, 83, 0.4);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 32px rgba(52, 168, 83, 0.15);
}

.adventure-photo {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, #f8f9fa, rgba(232, 245, 233, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
}

.adventure-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #f8f9fa;
    border: 2px dashed rgba(218, 220, 224, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

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

.adventure-card h3 {
    padding: 20px 24px 8px;
    font-size: 18px;
    font-weight: 500;
    color: #202124;
    font-family: 'Google Sans', sans-serif;
}

.adventure-card p {
    padding: 0 24px 24px;
    color: #5f6368;
    line-height: 1.6;
    font-size: 15px;
    letter-spacing: 0.1px;
}

/* Insights Grid - Enhanced Cards */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.insight-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(232, 234, 237, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: relative;
    opacity: 1; /* Changed from 0 to 1 */
    transform: translateY(0); /* Changed from translateY(30px) */
}

.js-enabled .insight-card {
    opacity: 0;
    transform: translateY(30px);
}

.insight-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.insight-card:hover {
    border-color: rgba(251, 188, 4, 0.4);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 32px rgba(251, 188, 4, 0.15);
}

.insight-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

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

.insight-card h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #202124;
    font-family: 'Google Sans', sans-serif;
}

.insight-card p {
    color: #5f6368;
    line-height: 1.6;
    font-size: 15px;
    letter-spacing: 0.1px;
}

/* CTA Section - Enhanced Style */
.cta-section {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(232, 234, 237, 0.8);
    border-bottom: 1px solid rgba(232, 234, 237, 0.8);
    padding: 48px 0;
    margin: 32px 0;
}

.cta-section .container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 500;
    color: #202124;
    font-family: 'Google Sans', sans-serif;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #5f6368;
    letter-spacing: 0.1px;
}

.next-steps {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
    list-style: none;
    background: rgba(248, 249, 250, 0.9);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(232, 234, 237, 0.8);
}

.next-steps li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
    color: #202124;
    letter-spacing: 0.1px;
}

.next-steps li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #34a853;
    font-weight: bold;
    font-size: 18px;
}

/* Footer - Enhanced Style */
.footer {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(232, 234, 237, 0.8);
    text-align: center;
    padding: 32px 0;
    margin-top: 48px;
}

.footer p {
    color: #5f6368;
    font-size: 14px;
    letter-spacing: 0.1px;
}

/* Section Wrappers */
.bg-subtle {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.8), rgba(232, 240, 254, 0.4));
    padding: 48px 0;
}

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

/* Enhanced Mobile Responsive */
@media (max-width: 768px) {
    .navbar {
        top: 8px;
        width: calc(100% - 16px);
        border-radius: 20px;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 8px;
        right: 8px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 20px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        padding: 32px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        display: flex;
        animation: mobileMenuSlide 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    }
    
    @keyframes mobileMenuSlide {
        from {
            opacity: 0;
            transform: translateY(-20px) scale(0.95);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }
    
    .nav-links a {
        font-size: 18px;
        padding: 16px 32px;
        width: 100%;
        text-align: center;
        border-radius: 12px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero {
        margin-top: 88px;
        min-height: 100vh;
        padding: 80px 24px 60px;
    }
    
    .hero-journey-preview {
        gap: 16px;
    }
    
    .journey-item {
        min-width: 100px;
        padding: 20px 16px;
    }
    
    .journey-icon {
        font-size: 1.8rem;
    }
    
    .journey-text {
        font-size: 12px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 280px;
    }
    
    .companies-grid,
    .adventure-grid,
    .insights-grid {
        grid-template-columns: 1fr;
        padding: 0 16px;
    }
    
    .timeline {
        padding: 0 16px;
    }
    
    .content-wrapper {
        padding: 24px 16px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .timeline-item {
        scroll-margin-top: 120px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 100px 16px 60px;
    }
    
    .hero-content {
        padding: 0;
    }
    
    .hero-journey-preview {
        gap: 12px;
    }
    
    .journey-item {
        min-width: 85px;
        padding: 16px 12px;
        gap: 8px;
    }
    
    .journey-icon {
        font-size: 1.6rem;
    }
    
    .journey-text {
        font-size: 11px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .timeline-content,
    .company-content,
    .insight-card {
        padding: 16px;
    }
    
    .post-header {
        padding: 16px;
    }
}

/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth Scroll Behavior Enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
    
    .timeline-item {
        scroll-margin-top: 120px;
    }
}

/* Remove decorative elements */
.gradient-orb,
.hero-scroll-indicator {
    display: none;
}

/* Gallery Section - Enhanced Glassmorphism Style */
.gallery-section {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.8), rgba(232, 240, 254, 0.4));
    padding: 48px 0;
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 20%, rgba(251, 188, 4, 0.05) 0%, transparent 60%);
    z-index: 0;
}

/* Gallery Grid Container */
.gallery-grid {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    gap: 32px;
}

/* Gallery Category */
.gallery-category {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(232, 234, 237, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    opacity: 1;
    transform: translateY(0);
}

.js-enabled .gallery-category {
    opacity: 0;
    transform: translateY(30px);
}

.gallery-category.visible {
    opacity: 1;
    transform: translateY(0);
}

.gallery-category:hover {
    border-color: rgba(66, 133, 244, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(66, 133, 244, 0.1);
}

/* Category Title */
.category-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #202124;
    font-family: 'Google Sans', sans-serif;
    text-align: center;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(66, 133, 244, 0.2);
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #4285f4, #34a853);
    border-radius: 2px;
}

/* Gallery Photos Grid */
.gallery-photos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    margin-top: 20px;
}

/* Gallery Images */
.gallery-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    border: 2px solid rgba(232, 234, 237, 0.8);
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.gallery-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

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

.gallery-image:hover {
    transform: scale(1.05);
    border-color: #4285f4;
    box-shadow: 
        0 8px 24px rgba(66, 133, 244, 0.2),
        0 0 0 4px rgba(66, 133, 244, 0.1);
}
/* Gallery Modal - Updated for proper centering */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    animation: modalFadeIn 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.gallery-modal.show {
    display: flex;
}

/* Modal Content - Properly centered */
.modal-content {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalImageScale 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    margin: auto;
}

@keyframes modalImageScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Close Modal Button - Fixed positioning */
.close-modal {
    position: fixed;
    top: 20px;
    right: 30px;
    color: #ffffff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    z-index: 10001;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Modal Caption - Fixed positioning */
.modal-caption {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-size: 16px;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 20px;
    max-width: 80%;
    font-weight: 500;
    letter-spacing: 0.25px;
    z-index: 10001;
}

/* Enhanced Mobile Responsive for Modal */
@media (max-width: 768px) {
    .gallery-modal {
        padding: 15px;
    }
    
    .modal-content {
        max-width: 95vw;
        max-height: 85vh;
    }
    
    .close-modal {
        top: 15px;
        right: 15px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
    
    .modal-caption {
        font-size: 14px;
        bottom: 15px;
        padding: 10px 20px;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .gallery-modal {
        padding: 10px;
    }
    
    .modal-content {
        max-width: 98vw;
        max-height: 80vh;
    }
    
    .close-modal {
        top: 10px;
        right: 10px;
        font-size: 25px;
        width: 35px;
        height: 35px;
    }
    
    .modal-caption {
        font-size: 12px;
        bottom: 10px;
        padding: 8px 16px;
        max-width: 95%;
    }
}
/* Modal Caption */
.modal-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-size: 16px;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 20px;
    max-width: 80%;
    font-weight: 500;
    letter-spacing: 0.25px;
}

/* Enhanced Mobile Responsive for Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        padding: 0 16px;
        gap: 24px;
    }
    
    .gallery-category {
        padding: 20px;
        border-radius: 16px;
    }
    
    .category-title {
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    .gallery-photos {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 10px;
    }
    
    .gallery-image {
        height: 120px;
        border-radius: 10px;
    }
    
    .close-modal {
        top: 15px;
        right: 15px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
    
    .modal-caption {
        font-size: 14px;
        bottom: 15px;
        padding: 10px 20px;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .gallery-category {
        padding: 16px;
    }
    
    .category-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .gallery-photos {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 8px;
    }
    
    .gallery-image {
        height: 100px;
        border-radius: 8px;
    }
    
    .modal-content {
        max-width: 95%;
        max-height: 85%;
    }
    
    .close-modal {
        top: 10px;
        right: 10px;
        font-size: 25px;
        width: 35px;
        height: 35px;
    }
    
    .modal-caption {
        font-size: 12px;
        bottom: 10px;
        padding: 8px 16px;
    }
}

/* Gallery Category Staggered Animation */
.gallery-category:nth-child(1) { animation-delay: 0.1s; }
.gallery-category:nth-child(2) { animation-delay: 0.2s; }
.gallery-category:nth-child(3) { animation-delay: 0.3s; }
.gallery-category:nth-child(4) { animation-delay: 0.4s; }
.gallery-category:nth-child(5) { animation-delay: 0.5s; }

/* Section Headers Styling */
.gallery-section .section-title {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #202124;
    font-family: 'Google Sans', sans-serif;
    text-align: center;
}

.gallery-section .section-intro {
    font-size: 18px;
    color: #5f6368;
    text-align: center;
    line-height: 1.6;
    letter-spacing: 0.1px;
    max-width: 600px;
    margin: 0 auto;
}

/* Hover effects for different categories */
.gallery-category:nth-child(1):hover { border-color: rgba(66, 133, 244, 0.6); } /* Corporate Visits - Blue */
.gallery-category:nth-child(2):hover { border-color: rgba(52, 168, 83, 0.6); } /* Manila Adventures - Green */
.gallery-category:nth-child(3):hover { border-color: rgba(251, 188, 4, 0.6); } /* Tagaytay Escape - Yellow */
.gallery-category:nth-child(4):hover { border-color: rgba(234, 67, 53, 0.6); } /* Baguio Highlights - Red */
.gallery-category:nth-child(5):hover { border-color: rgba(156, 39, 176, 0.6); } /* Batch Memories - Purple */







/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Google+Sans:wght@300;400;500;600;700&display=swap');